Jump to content
  • 0

jCarousel не работает в Opera


bob_24
 Share

Question

В общем карусель работает везде кроме Opera (пробовал в 10.50)

Погуглил:

Дело оказалось в том, что хоть и вызов конструктора библиотеки происходит по $(document).ready опера не успевает к этому моменту построить большие изображения, от чего jCarousel не получает от них offsetWidth offsetHeight. Решение очень простое, засунуть конструктор в коротенький таймер setTimeout(function(){$("#mycarousel").jcarousel(), 500);

Вопрос: куда этот таймер вставлять?


<script type="text/javascript">
jQuery(function(){
jQuery(".carousel").jCarouselLite({
auto:3000,
speed:800,
btnPrev: "#prev",
btnNext: "#next",
mouseWheel: true
});
});
</script>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Спасибо, но видимо проблема не в этом. Вот весь код:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.carousel{
overflow:hidden;
height:250px;
}
.carousel ul{
padding:0;
margin:0;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script type="text/javascript" src="js/jCarouselLite.js"></script>
</head>
<body>
<div class="carousel">
<ul>
<li><img src="image/picapica.png"></li>
<li><img src="image/picapica.png"></li>
<li><img src="image/picapica.png">/li>
</ul>
</div>
<script type="text/javascript">
$(".carousel").jCarouselLite({
auto:1000,
speed:800
});
</script>
</body>
</html>

Вроде бы и ломаться нечему, но все же не работает.

Edited by bob_24
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy