本实例使用jquery操作div的CSS,实现了可隐藏重现的靠边悬浮层,预览效果网址:http://www.keleyi.com/keleyi/phtml/xuanfudiv/
本实例使用到jquery添加移除类的两个方法,详细介绍请参考网址:http://www.keleyi.com/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://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>
<div style=”background-color:#959822; width:100%;height:150px;”>可以滚动鼠标使页面向下</div>
<div style=”background-color:Green; width:100%;height:150px;”>www.keleyi.com</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;”>keleyi.com</div>
<div style=”background-color:Fuchsia; width:100%;height:150px;”>keleyi</div>
<div style=”background-color:Green; width:100%;height:150px;”>keleyi.com</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://www.keleyi.com/a/bjac/cdbc89174171ebb8.htm” target=”_blank”>原文</a></div>
<div style=”background-color:Lime; width:100%;height:150px;”>keleyi.com</div>
<div style=”background-color:Orange; width:100%;height:150px;”><a href=”http://www.keleyi.com/menu/jquery/” target=”_blank”>jQuery</a>完整代码</div>










