I am trying code as mentioned in below link.
http://codepen.io/relfor/pen/qKjpL
This is working in Chrome. But not in FF. Any idea why this is happening?
Note : I am trying in MAC FF.
FF that I have is the latest version. 23.0.1
To get it working with all browswer, I did below
css
#offerId1 {
background-position-x:-65px;
background-position:-65px;
}
javascript
setInterval(function(){
$('#offerId1').animate(
{'background-position-x':'300px', 'background-position':'300px'},
2000,
function(){
$('#offerId1').css('background-position-x','-65px');
$('#offerId1').css('background-position','-65px');
})}, 1800)