Posted in Javascript onFebruary 03, 2017
tag标签随机多彩变化的超链接样式,使用JQ+DIV+CSS实现刷新随机变化样式特效。jquery版的随机多彩tag标签随机css字体颜色和字号大小效果。于是就写下这个效果与大家分享,办法也很笨拙,就是利用jquery随机数来遍历#tag中所有的a链接为其添加一个随机的类名。然后预先定义了12个链接样式。你可以自定义类似 #tags .tags1 这样的css以实现你需要的字体样式。这里的jquery随机多彩tag标签随机颜色和字号大小效果样式只是演示随便写的,不够漂亮。
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title></title> </head> <body> <style> body{ text-align:center} body,a{ font-size:13px;} a{ color:#333333; text-decoration:none;} .taglist{ width:350px;overflow:hidden; text-align:left; margin:0 auto;border:#dddddd solid 1px;} .taglist .tit{ width:100%; height:24px; line-height:24px; background-color:#565662;} .taglist .tit a{ padding-left:8px; color:#ffffff;} #tags a{height:26px; line-height:26px;padding-right:6px;} #tags .tags0{} #tags .tags1{color:#C00; font-size:24px;} #tags .tags2{color:#030; font-size:16px;} #tags .tags3{color:#00F;} #tags .tags4{ font-size:16px;} #tags .tags5{color:#C00; font-size:20px;} #tags .tags6{color:#F06 font-size:20px;} #tags .tags7{color:#030; font-weight:bold; font-size:18px;} #tags .tags8{color:#F06; font-weight:bold;} #tags .tags9{color:#C00; font-weight:bold;font-size:16px;} #tags .tags10{color:#090; font-weight:bold;font-size:18px;} #tags .tags11{color:#09F;} #tags .tags12{color:#F90;font-size:14px;} #tags a:hover{ color:#F00; text-decoration:underline;} .w95{ width:95%; margin:0 auto; padding-top:6px; padding-bottom:6px;} .taglist .w95{} </style> <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { var tags_a = $("#tags a"); tags_a.each(function(){ var x = 9; var y = 0; var rand = parseInt(Math.random() * (x - y + 1) + y); $(this).addClass("tags"+rand); }); }) </script> <div class="taglist"> <div class="tit"><a href="#">TAG标签</a></div> <div class="w95" id="tags"> <a href="http://www.baidu.com">导航菜单</a> <a href="http://www.baidu.com">焦点幻灯片</a> <a href="http://www.baidu.com">条幅广告代码</a> <a href="http://www.baidu.com">经典下拉菜单</a> <a href="http://www.baidu.com">jquery 特效</a> <a href="http://www.baidu.com">滚动代码</a> <a href="http://www.baidu.com">查看源码</a> <a href="http://www.baidu.com">css hack</a> <a href="http://www.baidu.com">file样式美化</a> <a href="http://www.baidu.com">CSS</a> <a href="http://www.baidu.com">HTML</a> <a href="http://www.baidu.com">DIVCSS5</a> <a href="http://www.baidu.com">JS+CSS幻灯片</a> <a href="http://www.baidu.com">网页源码</a> <a href="http://www.baidu.com">多彩导航条</a> <a href="http://www.baidu.com">css div</a> <a href="http://www.baidu.com">JS表格隔行变色</a> <a href="http://www.baidu.com">css+div</a> <a href="http://www.baidu.com">下拉菜单</a> </div> </div> </body> </html>
本特效可用于tag标签随机多彩变化的超链接样式。使用非常简单,可以预设多个想要的CSS a样式,可以设置超链接文字大小、字体颜色、字体背景等不同样式,随机刷新网页时候JQ自动实现超链接文字多样css样式特效效果。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持三水点靠木!
jquery实现刷新随机变化样式特效(tag标签样式)
- Author -
腥腻声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@