代码编辑器:
x
1
2
<meta charset="utf-8">
3
<link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/>
4
<script src="https://cdn.staticfile.org/jquery/2.2.4/jquery.min.js"></script>
5
6
<script>
7
$(document).ready(function(){
8
$(".btn1").click(function(){
9
$("p").animate({textIndent:"30px"});
10
});
11
$(".btn2").click(function(){
12
$("p").animate({textIndent:"0px"});
13
});
14
});
15
</script>
16
<button class="btn1">动画</button>
17
<button class="btn2">重置</button>
18
<p>This is a paragraph. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text. This is some more text.</p>