У меня есть этот код JavaScript:
var step = 8; // How many pixels to move per step
var current = -1920; // The current pixel row
var imageWidth = 1920; // Background image width
var headerWidth = 960; // How wide the header is.
function slide_in(){
//Go to next pixel row.
current += step;
//Set the CSS of the header.
$('#bgfade').css("background-position",current+"px 0");
if(current==0) alert('stop');
}
//Calls the scrolling function repeatedly
$('#bgfade').click(function(){
var init = setInterval("slide_in()", 1);
});
, это делает фон слайд.я хочу выйти, когда переменная ток = 0, и пусть фон в этой позиции.
спасибо