//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>
<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