05.html
来自「进行ajax开发sdsd s d sd s」· HTML 代码 · 共 15 行
HTML
15 行
<!-- This div is the element we are animating --><div id="urgent"><h1>Red Alert!</h1>The Web server is under attack!</div><script> var e = document.getElementById("urgent"); // Get Element objecte.style.border = "solid black 5px"; // Give it a bordere.style.padding = "50px"; // And some paddingvar colors = ["white", "yellow", "orange", "red"] // Colors to cycle throughvar nextColor = 0; // Position in the cycle// Invoke the following function every 500 milliseconds to animate border colorsetInterval(function() { e.style.borderColor=colors[nextColor++%colors.length]; }, 500);</script>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?