程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> Jquery滑動菜單lavalamp

Jquery滑動菜單lavalamp

編輯:關於JSP

doctype html>
 <html lang="zh">
    <head>
     <meta charset="utf-8">
        <title>xuyaoxiang</title>
<style>
body{margin:0px;padding:0px;}
.lavaLamp{
position: relative; /*--重要--*/
background-color: white;
margin: 0px 0; /*--對IE很重要--*/
line-height:28px;
height:28px;
}
.lavaLamp li{
float: left; /*--重要--*/
list-style: none;
}
.lavaLamp li.back{
width:9px;
background-color:#F66;
height: 28px; /*--較為重要--*/
z-index: 1; /*--較為重要--*/
position: absolute; /*--重要--*/
}
.lavaLamp li a{
color:#4F4F4F;
z-index: 2; /*--較為重要;如修改,數值必須大過上一個 z-index --*/
font-variant:small-caps;
text-decoration:none;
position: relative; /*--重要--*/
margin: auto 10px;
}
</style>


<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js?ver=1.2.6'></script>
<script type='text/javascript' src='http://shawnster.org/jQuery/lavalamp.min.js'></script>
<script type='text/javascript' src='http://shawnster.org/jQuery/easing.js'></script>
<script type="text/javascript">


$(function(){$(".lavaLamp").lavaLamp({ fx: "backout", speed: 333 })});


</script>
    </head>
    <body>
 <div>
       <ul class="lavaLamp">
         <li><a target="_blank" href="http://www.topit.me/fashion">Fashion | 時尚</a></li>
         <li><a target="_blank" href="http://www.topit.me/art">Art | 藝術</a></li>
         <li><a target="_blank" href="http://www.topit.me/photography">Photography | 攝影</a></li>
         <li><a target="_blank" href="http://www.topit.me/design">Design | 設計</a></li>
         <li><a target="_blank" href="http://www.topit.me/illustration">Illustration | 插畫</a></li>
         <li><a target="_blank" href="http://www.topit.me/featured">Featured | 主題</a></li>
       </ul>
 </div>
    </body>
</html>
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved