In previous posts I explained jQuery Get number of facebook likes, shares count for url, jQuery Google Currency Converter API Example, jQuery Highlight gridview rows on mouseover and many articles relating to jQuery, modal popup, asp.net. Now I will explain how to add blinking effect to text using jQuery in asp.net.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Add blinking effect to text in jQuery</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript">
$(function()
{
blinkeffect('#txtblnk');
})
function blinkeffect(selector) {
$(selector).fadeOut('slow',
function() {
$(this).fadeIn('slow', function()
{
blinkeffect(this);
});
});
}
</script>
</head>
<body>
<form id="form1"
runat="server">
<div id="txtblnk">
<p><strong><font color="red">Welcome
to Aspodtnet-Suresh.com</font></strong></p> </div>
</form>
</body>
</html>
|
Welcome to Aspodtnet-Suresh.com
|
|
If you enjoyed this post, please support the blog below. It's FREE! Get the latest Asp.net, C#.net, VB.NET, jQuery, Plugins & Code Snippets for FREE by subscribing to our Facebook, Twitter, RSS feed, or by email. |
|||
Subscribe by RSS
Subscribe by Email
|
|||
|
|
Subscribe by RSS
Subscribe by Email
6 comments :
Very helpful
it,s a greate
super
Nice
thank u very much
Welcome to Aspodtnet-Suresh.com
Spelling Mistake