Here's what you wrote, 01.03.24:

>Hi
>
>Is it possible to do text fading with PHP.  For instance, I want to one line
>of text fade in, have another line fade in later, and a third line after
>that.  Then all three lines will fade out at the same time and start over
>with three different lines.  Is this possible with php?
>
>Thanks
>
>Jamie

No, due to some browsers waiting for all a complete document object 
before outputting text. Even with browsers that will parse and 
display a partial feed, you really can't achieve a smooth effect due 
to network latency. The best thing to do is to work with JavaScript 
and CSS. Look into the setTimeout() function in JavaScript and use it 
to step through different color values for your text using CSS.

Or, just use an animated gif.

K
-- 
______________________________________

Kristofer Widholm
Web Pharmacy
[EMAIL PROTECTED]
191 Grand Street, Brooklyn  NY  11211
718.599.4893
______________________________________

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to