"CSS 이동"의 두 판 사이의 차이

46번째 줄: 46번째 줄:
</script>
</script>
</source>
</source>
<jsfiddle height='180'>9ysepuuL</jsfiddle>
<jsfiddle height='250'>9ysepuuL</jsfiddle>


==같이 보기==
==같이 보기==

2017년 1월 8일 (일) 14:50 판

CSS 이동 구현

1 예시 1

<style>
.box1 {
  position: absolute;
  left: 0;
  width: 150px; height: 150px;
  background: red;
  transition: 1.5s;
}
.box1:hover {
  left: 300px;
}
</style>

<div class='box1'></div>

2 예시 2: 버튼 동작

<style>
.box1 {
  position: absolute;
  left: 0;
  width: 150px; height: 150px;
  background: red;
  transition: 1.5s;
}
.box1:hover {
  left: 300px;
}
</style>

<button id='btn-move'>박스 이동</button>
<div class='box1'></div>

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
  $("#btn-move").click(function() {
    $(".box1").css('left', '300px');
  });
});
</script>

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}