Turn off Text Slide effect

More
9 years 4 weeks ago #46390 by popseven
Replied by popseven on topic Turn off Text Slide effect
from an earlier version from hot image slider i got this js code to switch the text ticker off.
i misssed this on my google search and analised the old js codes so i got a solution for my new hot image slider. but i have only a solution with core override not for the template override.

orginal code version of \modules\mod_hot_image_slider_pro\js\hotImageSlider.js:

###################################### near line 112 beginning ##########################################

ticker: function (el, text, pos, unique) {
if (slider.cr[unique] != text) return false;

ctext = text.substring(0, pos) + (pos % 2 ? '-' : '_');
jQuery(el).html(ctext);

if (pos == text.length) jQuery(el).html(text);
else window.setTimeout('slider.ticker("' + el + '","' + text + '",' + (pos + 1) + ',"' + unique + '");', 30);
}

###################################### near line 119 end ##########################################


edited code version of \modules\mod_hot_image_slider_pro\js\hotImageSlider.js:

###################################### near line 112 beginning ##########################################

ticker: function (el, text, pos, unique) {
if (slider.cr[unique] != text) return false;

ctext = text.substring(0, pos) + (pos % 2 ? '-' : '_');
jQuery(el).html(ctext);
jQuery(el).html(text);
}

###################################### near line 119 end ##########################################

if somebody needs a solution for me it is fine.

Please Log in to join the conversation.

Time to create page: 0.065 seconds
Powered by Kunena Forum