DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery常見問題 >> jquery實現的可隱藏重現的靠邊懸浮層
jquery實現的可隱藏重現的靠邊懸浮層
編輯:JQuery常見問題     
本實例使用jquery操作div的CSS,實現了可隱藏重現的靠邊懸浮層,預覽效果網址:http:///keleyi/phtml/xuanfudiv/

本實例使用到jquery添加移除類的兩個方法,詳細介紹請參考網址:http:///a/bjac/e9e40a974de5a902.htm

下面給出完整代碼,保存到html文件可查看效果。

<!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="http:///keleyi/pmedia/jquery-1.9.1.min.js"></script>
<style type="text/css">
body{ margin:0px;}
.onkeleyicom{left:0px;}
.offkeleyicom{left:-140px;}
.showkeleyicom{visibility:visible;}
.hidekeleyicom{visibility:hidden;}
#xf_keleyi_com{width:166px;height:200px; background-color:transparent;position:fixed;top:200px;}
#jt_keleyi_com{float:right;width:25px;height:25px;margin-top:80px;}
#nr_keleyi_com{float:left;height:100%;width:136px;background-color:Silver;}
</style>
</head>
<body>
<div style="background-color:#959822; width:100%;height:150px;">可以滾動鼠標使頁面向下</div>
<div style="background-color:Green; width:100%;height:150px;">www.</div>
<div style="background-color:Red; width:100%;height:150px;">請把光標移到箭頭上</div>
<div style="background-color:Yellow; width:100%;height:150px;">hi</div>
<div style="background-color:Silver; width:100%;height:150px;"></div>
<div style="background-color:Aqua; width:100%;height:150px;"></div>
<div style="background-color:Fuchsia; width:100%;height:150px;">keleyi</div>
<div style="background-color:Green; width:100%;height:150px;"></div>
<div style="background-color:Blue; width:100%;height:150px;"></div>
<div style="background-color:Olive; width:100%;height:150px;"> jquery實現的可隱藏重現的靠邊懸浮層</div>
<div style="background-color:Green; width:100%;height:150px;">A</div>
<div style="background-color:Purple; width:100%;height:150px;">jquery</div>
<div style="background-color:Green; width:100%;height:150px;"><a href="http:///a/bjac/cdbc89174171ebb8.htm" target="_blank">原文</a></div>
<div style="background-color:Lime; width:100%;height:150px;"></div>
<div style="background-color:Orange; width:100%;height:150px;"><a href="http:///menu/jquery/" target="_blank">jQuery</a>完整代碼</div>

<div class="offkeleyicom" id="xf_keleyi_com">
<div id="nr_keleyi_com">這裡是內容<br />www.
<ul>
<li><a href="http:///menu/net/" target="_blank">.NET</a>
</li>
<li><a href="http:///menu/javascript/" target="_blank">Javascript</a>
</li>
<li><a href="http:///menu/jquery/" target="_blank">jQuery</a>
</li>
<li><a href="http:///menu/csharp/" target="_blank">C#</a>
</li>
<li><a href="http:///menu/other/" target="_blank">其他</a>
</li>
</ul>
<br />
</div>
<div id="jt_keleyi_com"><img src="http:///keleyi/pmedia/rightarrow.jpg" alt="顯示" /></div>
</div>
<script type="text/javascript">
$(document).ready(
function () {
$('#jt_keleyi_com').bind('mouseover', function () {
$('#xf_keleyi_com').removeClass("offkeleyicom");
$('#xf_keleyi_com').addClass("onkeleyicom");
$('#jt_keleyi_com').addClass("hidekeleyicom");
$('#jt_keleyi_com').removeClass("showkeleyicom");
})
$('#nr_keleyi_com').bind('mouseleave', function () {
$('#xf_keleyi_com').removeClass("onkeleyicom");
$('#xf_keleyi_com').addClass("offkeleyicom");
$('#jt_keleyi_com').removeClass("hidekeleyicom");
$('#jt_keleyi_com').addClass("showkeleyicom");
})
})
</script>
</body>
</html>


另一版本:http:///a/bjac/13639353acde40c.htm
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved