Some customers complain that the slider is in opencart quickly turned over and you can not adjust the audio speed changer pictures either the view of the slide, but the issue is also very simply recovering a few changes in the code of the slide module and it will need to change the code in the file slideshow.tpl:
And so we open our file:
1 |
catalog/view/theme/default/template/module/slideshow.tpl |
And find in it the code:
1 2 3 4 5 |
<script type="text/javascript"><!-- $(document).ready(function() { $('#slideshow<?php echo $module; ?>').nivoSlider(); }); --></script> |
Change it to the following code:
1 2 3 4 5 6 7 8 |
<script type="text/javascript"><!-- $(document).ready(function() { $('#slideshow<?php echo $module; ?>').nivoSlider({ animSpeed: 500 , pauseTime: 10000 }); }); --></script> |
Where pauseTime: 10000 - This view milliseconds
and animSpeed: 500 , - is the speed of change the image.
That's not such a complicated method, we were able to change the speed of our slides.
No Comment
You can post first response comment.