Friday, May 28, 2021

Slip 6. Write a jQuery code to blink text continuously.

 


//slip6.html

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  
  <title>Blink text using jQuery</title>
</head>
 <body>
  <p>I like <span class="blink">Cake</span> and <span class="blink">Ice-cream</span></p>
</body> 
 
  <style>
   p{ color:red}
   body{background-color:aqua}
  </style>
 <script>
  function blink_text() {
    $('.blink').fadeOut(500);
    $('.blink').fadeIn(500);
   }
  setInterval(blink_text, 1500);
 </script>
</html>

No comments:

Post a Comment

Slip 10. Write a jQuery code to make first word of each statement to bold.

  Slip 10. Write a jQuery code to make first word of each statement to bold.  <!DOCTYPE html> <html>   <head>     <scri...