J-Query 질문 드립니다.
본문
J-Query 를 사용하여,
페이지를 열자 마자 아래로 내려오다 멈추는 레이어를 만들려면 어떻게 해야 할까요??
답변 2
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
<script>
$(function() {
$("#test").animate({"top":"300px"}, 2000);
});
</script>
<style>
#test {
width:100px;
height:100px;
background:#000;
position:absolute;
top:-100px;
}
</style>
<div id="test"></div>
animate() 쓰시면 됩니다.
!-->많은 도움이 되었습니다 ^^;
감사합니다~ ㅎㅎㅎ
답변을 작성하시기 전에 로그인 해주세요.