Молнии для сайта на jQuery by Apocalypse
1 2 3 4 5 6 7 8 9 10 11 12 |
<script> $(function() { setInterval('apostartlight()', getRandomInt(5000, 20000)); }); function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }; function apostartlight() { $('div.apolightning').hide(0); $('div#apol' + getRandomInt(1, 3)).css('margin-left', getRandomInt(-400, 0) + 'px').show(0).fadeOut(1000); }; </script> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
.apolightning { width: 300px; height: 235px; position: absolute; z-index: -1; left: 50%; margin-left: -14px; top: 0px; background: url(/img/apolight.png); display: none; } #apol2 { background: url(/img/apolight2.png); } #apol3 { background: url(/img/apolight3.png); } |
1 2 3 |
<div class="apolightning" id="apol1"></div> <div class="apolightning" id="apol2"></div> <div class="apolightning" id="apol3"></div> |