Показать сообщение отдельно
  #12 (permalink)  
Старый 28.06.2012, 14:07
без статуса
Отправить личное сообщение для Deff Посмотреть профиль Найти все сообщения от Deff
 
Регистрация: 25.05.2012
Сообщений: 8,219

Acreator57887,
Так - не спасает ?
$(window).load(function(){
$(".button").show();

var imageWidth = $(".window").width();
var imageSum = $(".image_reel img").size();
var imageReelWidth = imageWidth * imageSum;
var control_x = (imageSum-1)*(0-900);
var x = 0;


$(".image_reel").css({'width' : imageReelWidth});

rotate_l = function(){
if (x<0) { 
$(".image_reel").animate({
        left: x+900
    }, 500 ); 
x = x + 900;
}
else { 
$(".image_reel").animate({
        left: control_x
    }, 1000 );
x = control_x;
}
}; 

rotate_r = function(){
if (x>control_x) {
$(".image_reel").animate({
        left: x-900
    }, 500 );
x = x - 900;
}
else {
$(".image_reel").animate({
        left: 0
    }, 1000 );
x = 0;
}
};
var play;
rotateSwitch = function(){
    play = setInterval(function(){ 
         rotate_r(); 
    }, 6000); 
};
rotateSwitch();

$(".button a").hover(function() {      
    clearInterval(play); 
}, function() {
    rotateSwitch(); 
});		

$("#arrow_l").click(function() {
clearInterval(play); 
rotate_l(); 
return false;
});

$("#arrow_r").click(function() {
clearInterval(play);
rotate_r();
return false;
});
});

Поправил

Последний раз редактировалось Deff, 28.06.2012 в 14:14.
Ответить с цитированием