x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
5
<script>
6
  $( function() {
7
    $( "#start" ).click( function() {
8
      $( "#animation" ).animate({
9
        fontSize: "+=1.5em",
10
        letterSpacing: "+=0.3em"
11
      }, 4000 );   
12
    });
13
    $("#stop").click(function(){
14
      $("#animation").stop();
15
    });    
16
  });
17
</script>
18
19
<button id="start">Start Animation!</button>
20
<button id="stop">Stop Animation!</button>
21
22
<div id="animation">Animation</div>