W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript" src="/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".btn1").click(function(){ $("p").animate({right:"50%"}); }); $(".btn2").click(function(){ $("p").animate({right:""}); }); }); </script> </head> <body> <button class="btn1">Animate</button> <button class="btn2">Reset</button> <div style="position:relative"> <p style="background-color:yellow;width:100px;position:absolute;right:0px;">This is a paragraph.</p> </div> </body> </html>