我有以下代碼。我試圖通過點擊一個按鈕水平滾動到一個div。滾動到橫向不工作的div
jQuery(document).ready(function() {
jQuery("#clickme").click(function() {
jQuery("#parent").animate({
scrollLeft: jQuery("#child").position().left
}, 500);
});
});
#parent {
width: 1000px;
height: 200px;
background: #ccc;
position: relative;
}
#child {
position: absolute;
right: 200px;
height: 100px;
width: 100px;
background: blue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="parent">
<button id="clickme">
Click Me
</button>
<div id="child">
child div
</div>
</div>
有控制檯沒有錯誤。我究竟做錯了什麼 ?
我看不到按鈕,點擊任何動畫。 – vijayP