If you want remove the animation, you can open this file and follow the step below: /muziq-jellythemes/js/main.js line 136
/*----------------------------------------------
I N T R O S L I D E R
------------------------------------------------*/
$('#slides').superslides({
hashchange: false,
animation: 'fade',
play: 10000
});
Then change it to:
/*----------------------------------------------
I N T R O S L I D E R
------------------------------------------------*/
$('#slides').superslides({
hashchange: false,
animation: false,
play: 10000
});
Dear Support,
Since the animation in the home page is too slow (maybe for the graphics I used), I would like to remove it definitely and create a static page.
How can I do that?
Thanks
Hi,
If you want remove the animation, you can open this file and follow the step below: /muziq-jellythemes/js/main.js line 136
/*---------------------------------------------- I N T R O S L I D E R ------------------------------------------------*/ $('#slides').superslides({ hashchange: false, animation: 'fade', play: 10000 });Then change it to:
/*---------------------------------------------- I N T R O S L I D E R ------------------------------------------------*/ $('#slides').superslides({ hashchange: false, animation: false, play: 10000 });Best Regards,
Jelly Team
I'm sorry, it was a communication mistake of mine. I didn't mean the slider animation on the background but the text animation when the website opens.
I mean "Coro Polifonico NeoVibes" and "Concerti, Matrimoni ed Eventi"
Thanks
Hi,
The step still similar, but you will change the slidertext, the code will liked below:
function slidertext() { $("#owl-main-text").owlCarousel({ autoPlay: 10000, goToFirst: true, goToFirstSpeed: 2000, navigation: false, slideSpeed: 700, pagination: false, transitionStyle: "fadeUp", singleItem: true }); }Change it to:
function slidertext() { $("#owl-main-text").owlCarousel({ autoPlay: false, goToFirst: false, goToFirstSpeed: false, navigation: false, slideSpeed: 700, pagination: false, transitionStyle: "fadeUp", singleItem: true }); }Best Regards,
Jelly Team