더 나은 프로그래머가 되자

애니메이트안에 애니메이트 쓰기 본문

언어/js

애니메이트안에 애니메이트 쓰기

greathuman 2014. 11. 13. 16:44
<script type="text/javascript">
 jQuery(document).ready(function(){
  jQuery(".im .tt01").animate({ left:50, opacity:.5}, 300).animate({left:25, opacity:1}, 400);
  jQuery(".im .tt02").animate({ left:55, opacity:.5}, 600).animate({left:25, opacity:1}, 400);
  jQuery(".im .tt03").animate({ left:0, opacity:1}, 1000);
 });
</script>
     
Comments