/ Published in: jQuery
URL: http://www.youtube.com/watch?v=EzolxzuBXjo
Expand |
Embed | Plain Text
$(document).ready(function(){ setInterval ("move_gall()", 100); }) function move_gall(){ var backpos = $('div.pics_top').css('background-position').replace(/px/gi,'').split(' '); var l_pos = String(backpos[0]-3)+'px 0px' $('div.pics_top').css('background-position',l_pos) }
Comments
Subscribe to comments
You need to login to post a comment.

IE correction
$(document).ready(function(){ var divpicstop_css = { 'position':'absolute', 'top':'13px', 'left':'343px', 'height':'80px', 'width':'450px', 'background':'url(/images/all.jpg) repeat-x 0px 0px ' }
})
function movegall(){ var b = $('div#picstop').css('background').replace(/px/gi,'').split(' '); var lpos = String(b[b.length-2]-1)+'px' $('div.picstop').css('background-position',l_pos) }