⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 17-3.txt

📁 Javascript语言开发经典教程开发
💻 TXT
字号:
<!-- Here's some HTML.  We're going to animate the color of the named H1. --><DIV CLASS="WARNING"><H2 ID="WARNING1" STYLE="color:red; text-align:center">Red Alert!</H2>The Web server is on fire!</DIV><SCRIPT>// Animate the color of the element with ID="WARNING1", by // setting properties of its style object every half second.var colors = ["red", "orange", "black"];  // Cycle through these colors.var nextcolor = 0;// Invoke this function to change to the next color.function changecolor() {    document.all.WARNING1.style.color = colors[nextcolor++];    nextcolor = nextcolor % colors.length;}// Arrange to call changecolor() every half second.setInterval("changecolor()", 500);</SCRIPT>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -