Reply
Old 09-05-2008, 04:33 AM Script
Average Talker

Posts: 26
I am searching a script by which any text or image will be blinking some body help me
Mickael_law is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
Old 09-05-2008, 04:51 AM Re: Script
chrishirst's Avatar
Super Moderator

Latest Blog Post:
Am I impressed or what?
Posts: 14,899
Location: Blackpool. UK
Use a .gif
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
Indifference will be the downfall of mankind, but who cares?
Code Samples | People Counting System
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 09-05-2008, 03:36 PM Re: Script
nyef's Avatar
Ultra Talker

Posts: 267
Name: Lucas
Here you go...

Code:
<div id="blinker"></div>
<script type="text/javascript">
var blinktoggled=true;
var blinkinterval=1000;
function blinktoggle(){
  var o=document.getElementById("blinker");
  if (blinktoggled) o.style.visibility='hidden';
  else o.style.visibility='visible';
  blinktoggled=!blinktoggled;
  window.setTimeout("blinktoggle()",blinkinterval);
}
window.setTimeout("blinktoggle()",blinkinterval);
</script>
Anything you put in the div will "blink" once per second. To change the interval, alter the blinkinterval variable.
__________________
~nyef
Over 5000 free games!
nyef is offline
Reply With Quote
View Public Profile Visit nyef's homepage!
 
Old 09-05-2008, 03:47 PM Re: Script
chrishirst's Avatar
Super Moderator

Latest Blog Post:
Am I impressed or what?
Posts: 14,899
Location: Blackpool. UK
text-decoration:blink
http://www.candsdesign.co.uk/referen...xt-decoration/

fortunately, it doesn't work in IE6. Now lets see who says it gets everything wrong

But seriously NOBODY should use "blinking" text EVER!
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
Indifference will be the downfall of mankind, but who cares?
Code Samples | People Counting System
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to Script
 

Thread Tools

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

vB 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.12469 seconds with 12 queries