猿问
怎样手动滑动div
我的body里有两个div,默认第一个div, height站满屏,有一个点击事件,点击事件中用什么方法能够滑动到屏幕的底部啊
慕莱坞森
浏览 540
回答 1
1回答
Qyouu
$("#div").animate({height:'0'});<style>body{margin: 0; padding: 0}#content1{ height: 100%; background-color: #00a0c6; width: 100%; }#content2{ width: 100px; height: 100px; background-color: white; z-index: 100; float: left; position: fixed; top: 0; }</style><script>$(function () { $('body').height(window.screen.height); $('body').width(window.screen.width); })</script><body><div id="content2"></div><div id="content1"></div><script>$('#content1').click(function () { $('#content2').animate({top:'85%'}); })</script>
0
0
0
随时随地看视频
慕课网APP
相关分类
JavaScript
我要回答