Jump to content
xisto Community
truman69

Flashing Text? can u help me

Recommended Posts

Is there a way to make text flash on a webpage as i think it would be cool can anyone help???????i just want to be able to make text flashcheers chris

Share this post


Link to post
Share on other sites

I know there is the 'blink' property under text-decoration in CSS.eg. <a style="text-decoration: blink;">This text link should blink</a>But, this not implemented in some browsers. I know it does work in Firefox, therefore should work in other modern Mozilla-based browsers but I couldn't get any text blinking in my version of Internet Explorer 6.

Share this post


Link to post
Share on other sites

"Blink" does not work in IE6. If you want my opinion i do not think blinking text is cool. :-(

Share this post


Link to post
Share on other sites

"Blink" does not work in IE6. If you want my opinion i do not think blinking text is cool. :-(

68185[/snapback]

the problem is also mine.. is there any good book write for how to make flash ?

make web with Flash is so cool!!!!

help us!!

Share this post


Link to post
Share on other sites

Tasteful uses of the <blink> are rare, but I find that Superbad does a pretty good job.

If you want blinking text that will work in all browsers, you'd have to use animation, such as in a GIF image or a Flash movie. It might be possible to use javascript to do it, also, but I wouldn't know where to start.

To make it work with a GIF, you could take two approaches. One, create a GIF image with text that flashes on and off. Two, create a gif that alternates between the background color and being completely transparent. Then, using CSS, position the blinking GIF over text so that it alternates between showing the text and covering it.

So that's how you could do it. It's really not worth the trouble, if you ask me.

Share this post


Link to post
Share on other sites

if you cant do any of the above .. consider using a sequence of images or GIF's .. one image with the text visible and the other with the text invisible.. create a sequence of images using Imageready or so..Voila,, flashing gifshope it helps,Tariq

Share this post


Link to post
Share on other sites

Is there a way to make text flash on a webpage as i think it would be cool can anyone help???????

 

i just want to be able to make text flash

cheers chris

67522[/snapback]


Hi there,

 

How comfortable are you with java scripts? Link in ref: http://forums.xisto.com/no_longer_exists/

 

Follow the direction on that page. Replace the text to the display you need. Make sure to download the java applet and place them in the correct directory.

 

Although java may not run on all browsers or anyone who turns off the java, you will have at least fun wathing it work. I think I might add this to my own site...

 

Cheers.

Share this post


Link to post
Share on other sites

You could use JASC animation shop. I think there's a free trial for it out there. It's amazing. What kind of flashing text are you looking for? a picture of text or actualy flashing text that you can copy and stuff?It's probably a little easier to use than flash, unless you are using a generator. Anyways, good luck with it!

Share this post


Link to post
Share on other sites

I think flash is definately amazing. im currrently designing a new flash file for my website. most likely the whole thing will be flash. there are heaps of tutorials on the net that you can find. It teaches you step by step to make the things you want such as flash image galleries. Or even preloaders.All you need to do is choose the type that is more simple for you .. try it.. it taught me alot. I didn't learn much flash in uni as much as i did with tutorials. There are also books called Flash for dummies. lol sounds silly but its pretty good. :D .. when im done with my site hope you guys drop by.. If anyone is interested to see what i have in future just check often on https://myspace.com/browser
keegonguyen to see if i post new blogs regarding my site. :P

Share this post


Link to post
Share on other sites
Flashing TextFlashing Text?

<body onload="flash1()"><script type="text/javascript" language="javascript">

var text = 'Hi';

function flash1(){

document.GetElementById('text').InnerHTML = '<font color="red">'+ text +'</font>';

setTimeout('flash2()',1000);

}

function flash2(){

document.GetElementById('text').InnerHTML = '<font color="black">'+ text +'</font>';

setTimeout('flash1()',1000);

}

</script>

<span id="text">Hi</span></body>

-reply by GLADIATORS

Share this post


Link to post
Share on other sites

Well there is the blink tag. It was removed from IE6 because of how annoying it is. It lives on in browsers lie firefox. I would recommend not using it! Most web users hate it, its a good way to make people dislike your website!

Share this post


Link to post
Share on other sites

Blinking text is possible by using css file..In css file.blinktext { font-family: Arial, Helvetica, sans-serif; font-size: 1.2em; text-decoration: blink; font-style: normal; }<h1 class="blinktext">Your Text/copy that you want to blink</h1>Only just need to add TEXT-DECORATION as BLINK...

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.