我有這個代碼來移動從上到下滾動框,但我想倒過來,而不是從上到下我想從下往上移動它。這裏是我的代碼的傢伙:jquery移動對象從下到上
<script type="text/javascript">
$(document).ready(function() {
$(window).scroll(function() {
var x = $(document).scrollTop();
var wh = $(window).height();
console.log($(document).scrollTop());
$('.box').css('top', x);
});
});
</script>
更新CSS:
body {
background-image:url('bg.jpg');
height: 20000px;
}
div {
width: 50px;
height: 50px;
background: #f00;
top: 0%;
position: fixed;
}
這個代碼從頂部移動框底部,如何把它從底部移動到頂部?感謝你們的答案。
我想$( '盒子 ')的CSS(' 頂',$(文件).scrollTop())應該將文本框移動到窗口頂部(如果框位置:絕對的身體),你可以創建jsfiddle嗎? – Andrew