상단에서 슬라이딩되는 스크립트인데 속도조절을 어떡해 해야하는지... 정보
jQuery 상단에서 슬라이딩되는 스크립트인데 속도조절을 어떡해 해야하는지...본문
상단에서 내려오는 스크립트인데요
예를들어 2초있다가 이 슬라이딩이 나오게 하거나
지금 나오는 슬라이딩 속도를 좀 느리게 하려고 하는데 어떡해 해야하는지 고수님들의 조언바랍니다.
<!-----TOP---->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://www.hi-education.com/gnu4/img/jquery.cookie.js"></script>
<center>
<div id="top-banner-por" style="height:60px; display:none"><a href="#" id="setCookie"><div id="close-banner-por"></div></a>
<img src="http://www.hi-education.com/gnu4/img/easyjet_top_box_ad.gif" border="0">
</div>
</center>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://www.hi-education.com/gnu4/img/jquery.cookie.js"></script>
<center>
<div id="top-banner-por" style="height:60px; display:none"><a href="#" id="setCookie"><div id="close-banner-por"></div></a>
<img src="http://www.hi-education.com/gnu4/img/easyjet_top_box_ad.gif" border="0">
</div>
</center>
<script type="text/javascript">
$(function($) {
if( $.cookie('uthai')!=1){
$("#top-banner-por").animate({ opacity:3000},'slow').slideDown('slow').fadeIn('slow',function (){
$("#top-banner-por").css('display','');});
//$("#top-banner-por").css('display','');
}
$("#close-banner-por").click(function () {
$.cookie('uthai',1, { expires:1 });
$("#top-banner-por").animate({ opacity:0},'slow').slideUp('slow').fadeOut('slow',function (){
$("#top-banner-por").css('display','none');
});
});
$('#deleteCookie').click(function() {
$.cookie('uthai', null);alert("Cookie 'test' has been deleted.");
});
}
);
</script>
추천
0
0
댓글 4개
animate함수 앞에
$("#top-banner_por").delay("700").animate(.............
이런식으로 딜레이를 주는 방법도 있습니다.
$("#top-banner_por").delay("700").animate(.............
이런식으로 딜레이를 주는 방법도 있습니다.
답변진심으로 감사드립니다.
말씀하신 소스를 어디다 붙여야하는지 몰라서 헤매고 있는데요 ;;;
기존 소스를 어떡해 수정해야하는지 부탁좀드리겠습니다. ;
말씀하신 소스를 어디다 붙여야하는지 몰라서 헤매고 있는데요 ;;;
기존 소스를 어떡해 수정해야하는지 부탁좀드리겠습니다. ;
위 소스만 봐서
animate()함수가 사용된곳은 두곳입니다.
쿠키를 굽고 그에 따라 모션의 적용여부를 판단하는거 같은데
$("#top-banner_por").delay("700").animate({ opacity:3000},'slow').slideDown('slow').fadeIn('slow',function (){
일단 적용한번 해보심이...
animate()함수가 사용된곳은 두곳입니다.
쿠키를 굽고 그에 따라 모션의 적용여부를 판단하는거 같은데
$("#top-banner_por").delay("700").animate({ opacity:3000},'slow').slideDown('slow').fadeIn('slow',function (){
일단 적용한번 해보심이...
감사합니다. 말씀하신데로 했더니 잘되네요 ^^ 정말 감사요