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.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
Kotik
Помогите, пожалуйста, с зацикливанием карусели... Скролл срабатывает единажды... А нужно, чтобы карусель крутилась постоянно.
Вот код
<script type="text/javascript">
function startscroll() {
x = window.setInterval(function scroll() {
hCarousel.scrollTo(hCarousel.currentIndex() + 3);
},30);
}
function stopscroll() {
window.clearInterval(x);
}
function start_carousel() {
hCarousel = new UI.Carousel("horizontal_carousel_3", {direction: "horizontal", circular: true});
startscroll();
$('horizontal_carousel_3').onmouseover = function(){stopscroll();}
$('horizontal_carousel_3').onmouseout = function(){startscroll();}
}
Event.observe(window, "load", start_carousel);
</script>
посмотреть можно блок "Наши партнёры" тут внизу
Edited by KotikLink to comment
Share on other sites
0 answers to this question
Recommended Posts
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.