次のコードがあります。私はボタンをクリックすると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>
コンソールにはエラーはありません。何が間違っているのですか?
と
jQuery("html,body").animation
ないために行く私は、ボタンのクリックで任意のアニメーションが表示されません。 – vijayP