Jump to content

Text scolling rotator thing


JamesThePanda

Recommended Posts

Hey guys

There is some thing I want to do on a site I am building at the moment.

 

The person i am building it for has testimonials. I was a scrolling effect.

 

I want it so the first few lines of the testimonial are displayed. than after ten second. The text moves up and is replaced by anouther testimonial.

 

Does anyone know any ood resources for soem thign Like this?

 

Thanks

 

James

Link to comment
https://forums.phpfreaks.com/topic/113001-text-scolling-rotator-thing/
Share on other sites

Set a javascript timer to update the <p> or w/e with the testimonial from an array of testimonials.

 

Lookup: SetTimeout() function (or SetInterval()), and also, use the .innerHTML attribute. 

 

 

(document.getElementById("yourParagraph").innerHTML = "New testimonial";

SetTimeout("thisSameFunction()",10000);

 

you have to work out how it selects which testimonial etc to show, and where they are pulled from.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

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.