我是靠谱客的博主 爱撒娇画板,最近开发中收集的这篇文章主要介绍基于jquery的DIV随滚动条滚动而滚动的代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

核心代码:

复制代码 代码如下:

<script type="text/javascript" src="http://demo.uoften.com/jslib/jquery/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(function() {
$(window).scroll(function() {
var top = $(window).scrollTop()+200;
var left= $(window).scrollLeft()+320;
$("#editInfo").css({ left:left + "px", top: top + "px" });
});
});
</script>

<div id="editInfo" style="float:left;width:300px;background-color:#ccc;position:absolute;top:200px;">
<div>用户名:<input type="text" /></div>
<div>密码:<input type="text" /></div>
<div>年龄:<input type="text" /></div>
<div>备注:<input type="text" /></div>
<div><input type="button" value="保存" /></div>
</div>
<div style="height:1500px"></div>

在线演示 http://demo.uoften.com/js/2012/jquery_demo/jquery_div.html
记得以前写这样的代码比较麻烦,现在有了JQuery简单多了,就几行代码搞定!

最后

以上就是爱撒娇画板为你收集整理的基于jquery的DIV随滚动条滚动而滚动的代码的全部内容,希望文章能够帮你解决基于jquery的DIV随滚动条滚动而滚动的代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(112)

评论列表共有 0 条评论

立即
投稿
返回
顶部