hi..
http://www.dynamicdrive.com/dynamici...tentslider.htm
how can i make Auto slide work for everytime like if someone click pagination link.. Auto thing still works.. is it possible.?
hi..
http://www.dynamicdrive.com/dynamici...tentslider.htm
how can i make Auto slide work for everytime like if someone click pagination link.. Auto thing still works.. is it possible.?
Anyone Care to help? and can i put any image instead of 1 2 3 in pagination?
For 1), try removing the below code inside the .js file:
For 2), simply pass in the desired image tags into the 3rd parameter of the script when initializing the script, for example:Code:paginatediv.onclick=function(){ //cancel auto run sequence (if defined) when user clicks on pagination DIV if (typeof window[sliderid+"timer"]!="undefined") clearTimeout(window[sliderid+"timer"]) }
Code:var linktext=["<img src='1.gif' />", "<img src='2.gif' />", "<img src='3.gif' />", "<img src='4.gif' />"] //custom pagination links text array ContentSlider("slider1", 3000, linktext) //Auto rotate slider plus custom pagination links text
thanks but how to remove borders from these images..?
and how can i remove NEXT from pagination
To remove the border for the pagination images, just specify that when you pass in the HTML codes, for example:
Code:<img src='1.gif' border="0" />Find the line below, and add to it the code in red:and how can i remove NEXT from pagination
Code:pcontent+='<a href="#" style="display:none; font-weight: bold;" onClick=\"ContentSlider.turnpage(\''+sliderid+'\', parseInt(this.getAttribute(\'rel\'))); return false\">'+(slider.nextText || "Next")+'</a>'
thank alot...
Bookmarks