jQueryの基礎
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!doctype html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>jQueryを使う準備</title> </head> <body> <h1>Practice</h1> <dl>今日の天気<dl> <dd class="weather">晴れ</dd> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> <script> $(function(){ $('.weather').css('color','#ff7c89').fadeOut('2000'); }); </script> </body> </html> |