欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery实现的可隐藏重现的靠边悬浮层实例代码

程序员文章站 2023-01-11 15:11:53
本实例使用jquery操作p的CSS,实现了可隐藏重现的靠边悬浮层。 下面给出完整代码,保存到html文件可查看效果。 . 代码如下:

本实例使用jquery操作p的CSS,实现了可隐藏重现的靠边悬浮层。

下面给出完整代码,保存到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://www.keleyi.com/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>
<p style="background-color:#959822; width:100%;height:150px;">可以滚动鼠标使页面向下</p>
<p style="background-color:Green; width:100%;height:150px;">www.keleyi.com</p>
<p style="background-color:Red; width:100%;height:150px;">请把光标移到箭头上</p>
<p style="background-color:Yellow; width:100%;height:150px;">hi</p>
<p style="background-color:Silver; width:100%;height:150px;">柯乐义</p>
<p style="background-color:Aqua; width:100%;height:150px;">keleyi.com</p>
<p style="background-color:Fuchsia; width:100%;height:150px;">keleyi</p>
<p style="background-color:Green; width:100%;height:150px;">keleyi.com</p>
<p style="background-color:Blue; width:100%;height:150px;">柯乐义</p>
<p style="background-color:Olive; width:100%;height:150px;">柯乐义 jquery实现的可隐藏重现的靠边悬浮层</p>
<p style="background-color:Green; width:100%;height:150px;">A</p>
<p style="background-color:Purple; width:100%;height:150px;">jquery</p>
<p style="background-color:Green; width:100%;height:150px;"><a href="http://www.keleyi.com/a/bjac/cdbc89174171ebb8.htm" target="_blank">原文</a></p>
<p style="background-color:Lime; width:100%;height:150px;">keleyi.com</p>
<p style="background-color:Orange; width:100%;height:150px;"><a href="http://www.keleyi.com/menu/jquery/" target="_blank">jQuery</a>完整代码</p>
<p class="offkeleyicom" id="xf_keleyi_com">
<p id="nr_keleyi_com">这里是内容<br />www.keleyi.com
<ul>
<li><a href="http://www.keleyi.com/menu/net/" target="_blank">.NET</a>
</li>
<li><a href="http://www.keleyi.com/menu/javascript/" target="_blank">Javascript</a>
</li>
<li><a href="http://www.keleyi.com/menu/jquery/" target="_blank">jQuery</a>
</li>
<li><a href="http://www.keleyi.com/menu/csharp/" target="_blank">C#</a>
</li>
<li><a href="http://www.keleyi.com/menu/other/" target="_blank">其他</a>
</li>
</ul>
<br />
</p>
<p id="jt_keleyi_com"><img src=https://www.2cto.com/uploadfile/2018/0427/20180427022419987.jpg" alt="显示" /></p>
</p>
<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>