「jQuery入門」animate()でアニメーションをするサンプル
書式
$(要素名).animate({
'property名’:’値’
})
使用例
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("div").animate({left: '250px'});
});
});
</script>
</head>
<body>
<button>テスト</button>
<p>this is a test</p>
<div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
</body>
</html>