質問
jQueryを使いたいのですが、animateメソッドがうまく動きません。エラーメッセージは出ておらずどうすればいいのかわかりません。解説よろしくお願いします。
他のjqueryメソッドが動くことは確認しています。
該当のソースコード
html
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <link rel="stylesheet" href="style.css"> 7 <link rel="stylesheet" href="reboot.css"> 8 <title>jquery</title> 9 10</head> 11<body> 12 <div class="box1"> 13 <button class="button button1">hello</button> 14 <button class="button button2">good</button> 15 <button class="button button3">bad</button> 16 </div> 17<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> 18<script src="./js/script.js"></script> 19</body> 20</html>
js
1$(function(){ 2 3 $('.button1').on('mouseover',function(){ 4 $(this).animate( 5 { 6 backgroundColor: "#ae5e9b", 7 }, 8 300 9 ); 10 }); 11 12}); 13
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー