Vikhyath_11

w5

Jul 29th, 2024 (edited)
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Program5</title>
  7. </head>
  8. <script>
  9. var t1,c=0;
  10. function start(){
  11. t1=window.setInterval("incr()",100);
  12. }
  13. function incr(){
  14. c=c+1;
  15. t.innerHTML="TEXT_GROWING:"+c+"pt";
  16. t.style.fontSize=c+"pt";
  17. if(c>50){
  18. window.clearTimeout(t1);
  19. alert("now the text is gonna strink");
  20. t1=window.setInterval("decr()",100);
  21.  
  22. }
  23. t.style.color="red";
  24. }
  25. function decr(){
  26. c=c-1;
  27. t.innerHTML="TEXT_SHIRNKING:"+c+"pt";
  28. t.style.fontSize=c+"pt";
  29. if(c==5){
  30. window.clearTimeout(t1);
  31. // alert("now the text is gonna strink");
  32. // t1=window.setInterval("decr()",100);
  33.  
  34. }
  35. t.style.color="blue";
  36. }
  37.  
  38. </script>
  39. <body bgcolor=#ffdead onload="start()">
  40. <center><p id="t"></p></center>
  41.  
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment