jquery實現重新整理隨機變化樣式特效(tag標籤樣式),jquerytag
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樣式特效效果。
以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的協助,同時也希望多多支援幫客之家!