Jump to content
  • 0

animate блоков


Simon
 Share

Question

Дайте совет куда идти дальше. Есть такое


#scrollup {
position: relative;
overflow: hidden;
border: 1px solid #000;
height: 100px;
width: 100px;
float: left;
}
.headline {
position: absolute;
top:100px;
height: 200px;
width:100px;
}
.headline2 {
position: absolute;
height: 100px;
width:200px;
margin:0;
padding:0;
}


<script type="text/javascript">
$(document).ready(function(){
$("div.headline").css('top','0px');
headline_interval = setInterval(headline_rotate,3000);
});

function headline_rotate() {
$("div.headline").animate({top: -100},"slow").delay(3000).animate({top: 0},"slow").delay(3000);
$("div.headline2").animate({left: -100},"slow").delay(3000).animate({left: 0},"slow").delay(3000);
}
</script>

<div id="scrollup">
<div class="headline" style="background-color: red;">
<a href="#" target="_blank">
<div style="height: 100px;">1</div>
<div style="height: 100px;">2</div>
</a>
</div>
</div>

<div id="scrollup">
<div class="headline2" style="background-color: red;">
<a href="#" target="_blank">
<div style="width: 100px; height:100px; float:left;">a</div>
<div style="width: 100px; height:100px; float:left; ">b</div>
</a>
</div>
</div>

http://jsfiddle.net/VbdHU/1/

хочу сделать больше таких блоков(scrollup), штук 6-9, рядом, парочка из них имеют другое время смены внутренних дивов... можно добавлять headline1,2,3,4... в функцию headline_rotate()но слишком большой код получиться %)

посоветуйте другой способ не повторяя код реализовать данный эффект для n блоков(scrollup)

я вот думаю может как-то рандом сгенерить пару цифр, от 3 - 7 (для скорости смены внутренних дивов) и может эти же цифры привязать к определенным headline"ом, при сетИнтервале цифры меняются и получаем другую скорость для других блоков...чет типа такого

Edited by Simon
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Читайте мануалы по jQuery. Если бы вы хоть немного потрудились, то давно бы нашли ответ на свой вопрос.

Когда я изучал jQuery, то через 5 минут гугления я нашел метод .each(). Всего пять минут :)

P.S. И при чем тут рандом?

  • Like 1
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