![]() |
|
|
Регистрация Восстановить пароль |
Регистрация | Задать вопрос |
Заплачу за решение |
Новые сообщения |
Сообщения за день |
Расширенный поиск |
Правила |
Всё прочитано |
![]() |
|
Опции темы | Поиск в этой теме |
![]() |
#1 |
Новичок
Джуниор
Регистрация: 06.05.2010
Сообщений: 1
|
![]()
Суть проблемы в том, что есть слайдер из последовательно сменяющихся кадров, который во всех кроме 6 осла показывается нормально. Бьюсь уже третий день, но так и не пойму в чём трабла
![]() Код:
Код HTML:
<div class="container"> <div class="folio_block"> <div class="main_view"> <div class="window"> <div class="image_reel"> <a href="#"><img src="images/slider/01.jpg" /></a><a href="#"><img src="images/slider/02.jpg" /></a><a href="#"><img src="images/slider/03.jpg" /></a><a href="#"><img src="images/slider/04.jpg" /></a><a href="#"><img src="images/slider/05.jpg" /></a><a href="#"><img src="images/slider/06.jpg" /></a><a href="#"><img src="images/slider/07.jpg" /></a><a href="#"><img src="images/slider/08.jpg" /></a><a href="#"><img src="images/slider/09.jpg" /></a><a href="#"><img src="images/slider/10.jpg" /></a> </div> </div> <div class="paging"> <a href="#" rel="1"><img src="images/slider/01.gif" alt="" /></a><a href="#" rel="2"><img src="images/slider/02.gif" alt="" /></a><a href="#" rel="3"><img src="images/slider/03.gif" alt="" /></a><a href="#" rel="4"><img src="images/slider/04.gif" alt="" /></a><a href="#" rel="5"><img src="images/slider/05.gif" alt="" /></a><a href="#" rel="6"><img src="images/slider/06.gif" alt="" /></a><a href="#" rel="7"><img src="images/slider/07.gif" alt="" /></a><a href="#" rel="8"><img src="images/slider/08.gif" alt="" /></a><a href="#" rel="9"><img src="images/slider/09.gif" alt="" /></a><a href="#" rel="10"><img src="images/slider/10.gif" alt="" /></a> </div> </div> </div> </div> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { //Set Default State of each portfolio piece $(".paging").show(); $(".paging a:first").addClass("active"); //Get size of images, how many there are, then determin the size of the image reel. var imageWidth = $(".window").width(); var imageSum = $(".image_reel img").size(); var imageReelWidth = imageWidth * imageSum; //Adjust the image reel to its new size $(".image_reel").css({'width' : imageReelWidth}); //Paging + Slider Function rotate = function(){ var triggerID = $active.attr("rel") - 1; //Get number of times to slide var image_reelPosition = triggerID * imageWidth; //Determines the distance the image reel needs to slide $(".paging a").removeClass('active'); //Remove all active class $active.addClass('active'); //Add active class (the $active is declared in the rotateSwitch function) //Slider Animation $(".image_reel").animate({ left: -image_reelPosition }, 500 ); }; //Rotation + Timing Event rotateSwitch = function(){ play = setInterval(function(){ //Set timer - this will repeat itself every 3 seconds $active = $('.paging a.active').next(); if ( $active.length === 0) { //If paging reaches the end... $active = $('.paging a:first'); //go back to first } rotate(); //Trigger the paging and slider function }, 7000); //Timer speed in milliseconds (3 seconds) }; rotateSwitch(); //Run function on launch //On Hover $(".image_reel a").hover(function() { clearInterval(play); //Stop the rotation }, function() { rotateSwitch(); //Resume rotation }); //On Click $(".paging a").click(function() { $active = $(this); //Activate the clicked paging //Reset Timer clearInterval(play); //Stop the rotation rotate(); //Trigger rotation immediately rotateSwitch(); // Resume rotation return false; //Prevent browser jump to link anchor }); }); </script> |
![]() |
![]() |
![]() |
![]() |
||||
Тема | Автор | Раздел | Ответов | Последнее сообщение |
Сайт не показывается в IE | HereComesTheRain | Помощь студентам | 0 | 30.04.2010 18:14 |
Новый слайдер на ваш сайт | 13th | Обсуждение статей | 5 | 09.03.2010 21:57 |
ГЛЮК В ie6 | sdm98 | HTML и CSS | 2 | 23.10.2009 03:02 |
сайт сделан в CSS, почему в експлолере он у меня глючит, а в мозиле все показывается как я сделал? | -=Ламер=- | HTML и CSS | 16 | 11.09.2008 18:12 |