Blinking Text on Screen?http://forums.asp.net/t/1804643.aspx/1?Blinking+Text+on+Screen+Thu, 17 May 2012 10:05:21 -040018046434984940http://forums.asp.net/p/1804643/4984940.aspx/1?Blinking+Text+on+Screen+Blinking Text on Screen? <p>Hi,</p> <p>I have a page and there are some data on it which are retrieved from database. According to a specific data I would like to blink a text on the screen. Is there a way to do it?</p> <p>best Regards.</p> 2012-05-17T09:23:34-04:004984950http://forums.asp.net/p/1804643/4984950.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p>Use html blink tag</p> <p>http://reference.sitepoint.com/html/blink</p> <p>Or in CSS</p> <pre class="prettyprint">/* This is the css style that will make your text blink.*/ .blinkytext { font-family: Arial, Helvetica, sans-serif; font-size: 1.2em; text-decoration: blink; font-style: normal; }</pre> <p><br> For Cross Browser, check following good link:</p> <p>http://stackoverflow.com/questions/4894488/blinking-text-cross-browser</p> 2012-05-17T09:26:08-04:004984958http://forums.asp.net/p/1804643/4984958.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p>what about the html tag blink</p> <p><strong>&lt;blink&gt; Content to blink &lt;/blink&gt;</strong></p> <p>Try it.</p> <p>Thanks.</p> 2012-05-17T09:30:17-04:004984969http://forums.asp.net/p/1804643/4984969.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p>you should use some jquery plugin... like this</p> <p><a href="http://www.antiyes.com/jquery-blink-plugin">http://www.antiyes.com/jquery-blink-plugin</a></p> <p>hope this helps...</p> 2012-05-17T09:33:33-04:004984975http://forums.asp.net/p/1804643/4984975.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p>Hi urenjoy,</p> <p>Does this&nbsp;<span class="pln"><span class="pln">text</span><span class="pun">-</span><span class="pln">decoration is supported by chrome,FF and IE 9?</span></span></p> <p><span class="pln"><span class="pln">thanks for your reply.</span></span></p> <p><span class="pln"><span class="pln">Best Regards.</span></span></p> <p><span class="pln"><span class="pln"><br> </span></span></p> <p><span class="pln"><span class="pln">Edit1: seems NOT</span></span></p> 2012-05-17T09:36:38-04:004984980http://forums.asp.net/p/1804643/4984980.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p>hi kedarrkulkarni,</p> <p>Thanks for your reply. Can I use it from code behind?</p> <p>Best Regards.</p> 2012-05-17T09:39:11-04:004984993http://forums.asp.net/p/1804643/4984993.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p></p> <blockquote><span class="icon-blockquote"></span> <h4>cenk1536</h4> <p></p> <p>hi kedarrkulkarni,</p> <p>Thanks for your reply. Can I use it from code behind?</p> <p>Best Regards.</p> <p></p> </blockquote> <p></p> <p>what exactly u want to do from codebehind? u can set jquery blink code on client side.... using a class name jquery selector...</p> <p>from codebehind, u can set a class name for a span/div so that that text starts blinking.</p> <p>note: &lt;blink&gt; tag is not supported in most of browsers</p> <p>hope this helps...</p> 2012-05-17T09:44:51-04:004984996http://forums.asp.net/p/1804643/4984996.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p>I want to blink a text according to a specific data coming from database.</p> 2012-05-17T09:46:25-04:004985026http://forums.asp.net/p/1804643/4985026.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p>download this jquery plugin and refer in u r aspx code...</p> <p><a href="http://www.antiyes.com/jquery-blink-plugin">http://www.antiyes.com/jquery-blink-plugin</a></p> <p>then, in .aspx page, add code like this</p> <pre class="prettyprint">&lt;script src=&quot;jquery-1.3.2.min.js&quot; language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script src=&quot;jquery-blink.js&quot; language=&quot;javscript&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; language=&quot;javascript&quot;&gt; $(document).ready(function() { $('.blink').blink(); // default is 500ms blink interval. //$('.blink').blink({delay:100}); // causes a 100ms blink interval. }); &lt;/script&gt; &lt;div runat=&quot;server&quot; id=&quot;blinkText&quot; &gt; &lt;/div&gt;</pre> <p>now, in the codebehind, get database values...</p> <p>if required condition matches then set blinkText div's class name to "blink" else set it to blank... like this</p> <pre class="prettyprint">if(condtion matches) blinkText.Attributes.Add("class","blink"); else blinkText.Attributes.Add("class","");</pre> <p>add text to be blinking inside div... (either in design or from codebehind using blinkText.InnerHtml=&quot;text&quot;)</p> <p>this will add class=&quot;blink&quot; to div when u want to blink the text inside it</p> <p>hope this helps...</p> 2012-05-17T10:03:04-04:004985029http://forums.asp.net/p/1804643/4985029.aspx/1?Re+Blinking+Text+on+Screen+Re: Blinking Text on Screen? <p>Hi,</p> <p>Try few posts here-</p> <p><a href="http://delicious.com/anupdg/blink">http://delicious.com/anupdg/blink</a></p> 2012-05-17T10:05:21-04:00