Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Closed Thread
Blinking a Text in HTML ??
Old 08-01-2006, 06:05 AM Blinking a Text in HTML ??
manthu64's Avatar
Average Talker

Posts: 27
Name: Manthan Dudani
Location: India
Trades: 0
Hi all, Thanking you for u all are helping me very much.

I want to blink a text in html, isn't i ? I know about the <BLINK> tag but any other things or code or tag will help me in blinking text.

Thanks....
manthu64 is offline
View Public Profile
 
 
Register now for full access!
Old 08-01-2006, 06:10 AM Re: Blinking a Text in HTML ??
b0881's Avatar
Super Talker

Posts: 112
Name: Bobby
Trades: 0
Unfortunately blinking text isnt widely accessible.

A .gif or flash file might make more sense, dependint how your wanting to use it
b0881 is offline
View Public Profile
 
Old 08-01-2006, 06:10 AM Re: Blinking a Text in HTML ??
moondog's Avatar
Ultra Talker

Posts: 256
Location: Croatia
Trades: 0
code:

<blink> Your text </blink>

Internet Explorer does not support blinking text (using <BLINK> ... </BLINK> HTML tags).

Last edited by moondog; 08-01-2006 at 06:12 AM..
moondog is offline
View Public Profile
 
Old 08-01-2006, 06:13 AM Re: Blinking a Text in HTML ??
b0881's Avatar
Super Talker

Posts: 112
Name: Bobby
Trades: 0
Internet Explorer doesnt support the <blink> tag unfortunately.
b0881 is offline
View Public Profile
 
Old 08-01-2006, 06:52 AM Re: Blinking a Text in HTML ??
ChipJohns's Avatar
I don't know! Do you?

Posts: 488
Name: Chip Johns
Location: Savannah Georgia
Trades: 0
Making your text *blinky* with css

Code:
 
/* 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;
 }
HTML Code:
<h1 class="blinkytext">
Your Text/copy that you want to blink
</h1>
ChipJohns is offline
View Public Profile Visit ChipJohns's homepage!
 
Old 08-02-2006, 04:59 AM Re: Blinking a Text in HTML ??
manthu64's Avatar
Average Talker

Posts: 27
Name: Manthan Dudani
Location: India
Trades: 0
Thanking you all !!!

But still I didn't got the code.
ChipJohns good efforts by you. thanks. but that CSS code also not working. text-decoration:blink; is not working in IE. and also <BLINK> tag not supporting in IE.

I think without JS i wll not get the code. But problem in JS is SEO related.

Thanks once agin.
manthu64 is offline
View Public Profile
 
Old 08-02-2006, 08:25 AM Re: Blinking a Text in HTML ??
ChipJohns's Avatar
I don't know! Do you?

Posts: 488
Name: Chip Johns
Location: Savannah Georgia
Trades: 0
Quote:
Originally Posted by manthu64 View Post
Thanking you all !!!

But still I didn't got the code.
ChipJohns good efforts by you. thanks. but that CSS code also not working. text-decoration:blink; is not working in IE. and also <BLINK> tag not supporting in IE.

I think without JS i wll not get the code. But problem in JS is SEO related.

Thanks once agin.
Manthu64,

Blinking text is blinking text. You are not going to get html text to blink in IE..!
Not going to happen...

...as was stated earlier use an animted gif. You are concerned about seo.. Just
put the same text in the alt description in the img tag. or better yet don't add
blinking text to your web page... @;-)

I can see, possibly putting a *call to action* in blinking text for attention, but I
don't see what situation you will have to need to put *keywords* in blinking
text. (?) If, however you need to do this, and it best suits your visitor to do so,
then this should not yield to SEO. Just do it! Use the animated gif.

NEVER, NEVER,NEVER should seo be more important than visitor needs. If there
is a conflict between the two then one must be doing something wrong. Your
visitor ALWAYS, ALWAYS, ALWAYS comes first.

I guess what you really need to ask yourself is why you want to make text
blink. Will it really have that big of an impact to motivate someone to take
action?

I think that all of the experienced web developers here, AND the
marketing/advertising people will agree that it will not serve yo best to put
blinking or flashing text on your page. My professional advice would be to
forgetagouttheBLINKINGtext
..!
ChipJohns is offline
View Public Profile Visit ChipJohns's homepage!
 
Old 05-13-2009, 07:52 AM Re: Blinking a Text in HTML ??
Junior Talker

Posts: 1
Name: Chathura Perera
Trades: 0
You may use a timer instead of using the <BLINK> tag.
I have tested this on IE7 and Firefox. Both browsers allow this. However Chrome doesn't work properly.
Hope you got the answer....

<html>
<body onload="setInterval('blinkIt()',500)">
<script type="text/javascript">
function blinkIt() {
if (!document.all) return;
else {
for(i=0;i<document.all.tags('blink').length;i++){
s=document.all.tags('blink')[i];
s.style.visibility=(s.style.visibility=='visible') ?'hidden':'visible';
}
}
}
</script>
<blink>Your text</blink>
</body>
</html>
Chat_Sri_Lanka is offline
View Public Profile
 
Old 05-13-2009, 08:40 AM Re: Blinking a Text in HTML ??
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
A good effort...
For a thread that is almost 3 years old.

:-)
This thread is locked up now.
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
View Public Profile Visit tripy's homepage!
 
Closed Thread     « Reply to Blinking a Text in HTML ??
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.29431 seconds with 12 queries