Webpage special effects flashing links

Source: Internet
Author: User
Tip: you can modify some code before running

<html><head><title>Flashing links</title></head><body background="01.jpg"><script language="JavaScript">Function initArray (){<!--定义闪烁的颜色变化顺序-->For (var I = 0; I <initArray. arguments. length; I ++ ){<!--循环变量初始化和依次递加-->This [I] = initArray. arguments [I];<!--变量赋值-->} This. length = initArray. arguments. length;<!--记录颜色数组的长度-->}<!--以下为变幻时的颜色-->Var colors = new initArray ("#000000", "# 0000FF", "#80 FFFF", "#80FF80", "# FFFF00", "# FF8000 ", "# FF00FF", "# FF0000"); delay= 100<!--定义每种颜色闪烁的时间-->Link = 0;<!--初始化循环变量-->Vlink = 0; function linkDance () {link = (link + 1) % colors. length; vlink = (vlink + 1) % colors. length;<!--通过取整运算实现循环-->Document. linkColor = colors [link]; document. vlinkColor = colors [vlink];<!--将颜色取值分别赋给链接颜色和下划线颜色数组-->SetTimeout ("linkDance ()", delay );<!--延迟delay的时间长度-->} LinkDance ();<!--调用linkDance()函数实现闪烁功能--></script><p align="center"><font size="10" face="黑体">Webpage creation tutorial</font></p></body></html><!--本案例实现了超链接闪烁的功能--><!--程序中设定了闪烁的时间长短,色彩顺序等--><!--主要是通过调用linkDance()函数来实现闪烁功能-->
Tip: you can modify some code before running

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.