I want to create my own jQuery animation for my wordpress site, because there is no wordpress plugin for my need, and I do not want to use the jquery plugin, it creates problems inside wordpress.
My html consists of a list of horizontal images that I just want to scroll smoothly to the left automatically (almost like displaying ads on a website that automatically scrolls)
How can I do it?
I tried the following, but the scroll is not smooth ....
Here is my FIDDLE
code:
JQuery
var w = $('#clientsSlider ul').width(); $('#clientsSlider > ul').animate({ left: -w }, 30000)
HTML:
<div id="clientsSlider"> <ul> <li><img src="..." /></li> <li><img src="..." /></li> <li><img src="..." /></li> <li><img src="..." /></li> <li><img src="..." /></li> </ul> </div>
source share