JamesThePanda Posted July 2, 2008 Share Posted July 2, 2008 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 Quote Link to comment Share on other sites More sharing options...
xtopolis Posted July 3, 2008 Share Posted July 3, 2008 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.