<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").css({"color": "red", "font-size": "20px", "text-align": "center"}); }); </script> </head> <body> <p>Hello, jQuery!</p> </body> </html>
<p>
要素を選択し、.css()
を渡します。メソッドはスタイルを変更します。 。 <p>2. アニメーション効果を追加する<p>静的スタイルを変更するだけでなく、jQuery を使用してアニメーション効果を追加し、Web ページに活気を与えることもできます。簡単なアニメーション効果の例を次に示します。 <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#btn").click(function(){ $("#box").animate({left: '250px'}); }); }); </script> </head> <body> <button id="btn">点击移动盒子</button> <div id="box" style="width: 100px; height: 100px; background-color: red; position: relative;"></div> </body> </html>
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#hover").hover(function(){ $(this).css("background-color", "yellow"); }, function(){ $(this).css("background-color", "white"); }); }); </script> </head> <body> <div id="hover" style="width: 200px; height: 100px; background-color: white;">悬停在我上面</div> </body> </html>
#hover
要素上にあると背景色が黄色に変わり、マウスを外すと背景色が白に戻ります。
<p>概要:
<p>上記の例を通して、jQuery を使用すると Web ページのスタイルを簡単にカスタマイズできることがわかります。テキスト スタイルの変更、アニメーション効果の追加、ユーザー インタラクションへの応答などはすべて、単純な jQuery コードで実現できます。上記の例が、Web ページのスタイルをより適切にカスタマイズし、ユーザーにより良いエクスペリエンスを提供するのに役立つことを願っています。 以上がjQuery を使用して Web ページのスタイルを簡単にカスタマイズするの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。