jQuery實現漸層彈出層和快顯功能表的方法,jquery漸層

來源:互聯網
上載者:User

jQuery實現漸層彈出層和快顯功能表的方法,jquery漸層

本文執行個體講述了jQuery實現漸層彈出層和快顯功能表的方法。分享給大家供大家參考。具體實現方法如下:

複製代碼 代碼如下:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery實現漸層彈出層和快顯功能表</title>
<script type="text/javascript" src="/images/jquery.js"></script>
<style>
/* 漸層彈出層 */
body{font-size:9pt;}
#race{display:block;width:200px;height:50px;line-height:50px;text-align:center;background:#CCC;border:#555 1px solid;}
.raceShow{background-color:#f1f1f1;border:solid 1px #ccc;position:absolute;display:none;width:300px;height:100px;padding:5px;font-size:12px;}
#UpLayer span{border:#fff 1px solid; width:80px; padding:0 5px; line-height:20px; display:block;}
#UpLayer ul{display:none;position:absolute;border:#ccc 1px solid;width:80px; padding:5px; line-height:20px; background:#f1f1f1; margin:-1px 0 0 0;}
#UpLayer ul li{ border-bottom:#ccc 1px dashed;}
</style>
</head>
<body>
<script type="text/javascript">
// 漸層彈出層
$(document).ready(function(){
 var speed = 600;//動畫速度
 $("#race a").click(function(event){//綁定事件處理
  event.stopPropagation();
  var offset = $(event.target).offset();//取消事件冒泡
  $("#racePop").css({ top:offset.top + $(event.target).height() + "px", left:offset.left });//設定彈出層位置
  $("#racePop").show(speed);//動畫顯示
 });
 $(document).click(function(event) { $("#racePop").hide(speed) });//單擊空白地區隱藏
 $("#racePop").click(function(event) { $("#racePop").hide(speed) });//單擊彈出層則自身隱藏
 var objStr = "#UpLayer";
 $(objStr).mouseover(function(){$(objStr + " ul").show();});
 $(objStr).mouseout(function(){$(objStr + " ul").hide();});
});
</script>
<!-- 漸層彈出層 -->
<div id="race"><a href="#">點擊</a></div>
<div id="racePop" class="raceShow">這裡是彈出層效果</div>
<div id="UpLayer">
 <span><a href="javascript:void(0)">彈出層</a></span>
    <ul>
        <li><a href="http://www.baidu.com">百度搜尋</a></li>
        <li><a href="http://www.bkjia.com">幫客之家</a></li>
        <li><a href="http://sc.jb51.net">素材之家</a></li>
        <li><a href="http://www.sina.com.cn/">新浪首頁</a></li>
    </ul>
</div>
</body>
</html>

希望本文所述對大家的jQuery程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.