您好,登录后才能下订单哦!
实现功能:
1、当点击按钮的时,移动页面上的某个元素
Jquery代码:
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$("#box").animate({left:"-=100px"});
});
$(".btn2").click(function(){
$("#box").animate({left:"+=100px"});
});
});
</script>
HTML代码:
<body>
<div id="box" style="position:absolute; left:1px;top:40px; background:#98bf21;height:100px;width:1000px;margin:6px;">
</div>
<button class="btn1">Animate</button>
<button class="btn2">Reset</button>
</body>
-----上传了源文件,有需要的自己下载下来看看吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。