手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jquery实现对联广告的方法
jquery实现对联广告的方法
摘要:本文实例讲述了jquery实现对联广告的方法。分享给大家供大家参考。具体实现方法如下:复制代码代码如下:$(document).ready(...

本文实例讲述了jquery实现对联广告的方法。分享给大家供大家参考。具体实现方法如下:

复制代码 代码如下:<!DOCTYPE>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<script src="js/jquery.js" type="text/javascript"></script>

<script type="text/javascript">

$(document).ready(function(){

var duilian = $("div.duilian");

var duilian_close = $("a.duilian_close");

var window_w = $(window).width();

if(window_w>1000){duilian.show();}

$(window).scroll(function(){

var scrollTop = $(window).scrollTop();

duilian.stop().animate({top:scrollTop+100});

});

duilian_close.click(function(){

$(this).parent().hide();

return false;

});

});

</script>

<style>

/*下面是对联广告的css代码*/

.duilian{top:100px;position:absolute; width:102px; overflow:hidden; display:none;}

.duilian_left{ left:6px;}

.duilian_right{right:6px;}

.duilian_con{border:red solid 1px; width:100px; height:300px; overflow:hidden;}

.duilian_close{ width:100%; height:24px; line-height:24px; text-align:center; display:block; font-size:13px; color:#555555; text-decoration:none;}

</style>

</head>

<body>

<>

<div>

<div>对联的内容</div>

<a href="#">X关闭</a>

</div>

<div>

<div>对联的内容</div>

<a href="#">X关闭</a>

</div>

<p></p>

</body>

</html>

希望本文所述对大家的jQuery程序设计有所帮助。

【jquery实现对联广告的方法】相关文章:

jQuery处理图片加载失败的常用方法

javascript实现行拖动的方法

jquery实现弹出层效果实例

javascript用函数实现对象的方法

javasript实现密码的隐藏与显示

JQuery+CSS实现图片上放置按钮的方法

JS实现上下左右对称的九九乘法表

用JavaScript实现对话框的教程

JavaScript实现表格点击排序的方法

jQuery切换所有复选框选中状态的方法

精品推荐
分类导航