댓글 검색 목록

[jQuery] jQuery animation move 예...

페이지 정보

작성자 운영자 작성일 15-06-12 00:06 조회 3,728 댓글 0

<!DOCTYPE html>

<html>

<head>

<style type="text/css">

div {

  position: relative;

  left: 0;

  top: 0;

  width: 10px;

  height: 10px;

  background-color: blue;

}

</style>

<script

  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<script type="text/javascript">

  $(function() {

    $(document).click(function(event) {

      $("div#box").animate({

        left : '+=100px'

      }, 200);

    });

  });

</script>

</head>

<body>

  <div id="box"></div>

</body>

</html> 

댓글목록 0

등록된 댓글이 없습니다.

웹학교 로고

온라인 코딩학교

코리아뉴스 2001 - , All right reserved.