.hover (handlerIn, handlerOut)

· 2017-10-19 (목) 23:53:47 · 1895

.hover (handlerIn, handlerOut)

설명 : 일치하는 요소에 두 개의 핸들러를 바인딩하여 마우스 포인터가 요소에 들어갔을 때 실행됩니다.

이 .hover()메서드는 양쪽 mouseenter및 mouseleave이벤트에 대한 처리기를 바인딩 합니다. 마우스를 요소 내에 사용하는 동안 요소에 비헤이비어를 적용하는 데 사용할 수 있습니다.

전화 $( selector ).hover( handlerIn, handlerOut )는 다음과 같이 단축됩니다.

1
$( selector ).mouseenter( handlerIn ).mouseleave( handlerOut );
에 대한 토론을 참조 .mouseenter()하고 .mouseleave()자세한 내용을.

예 :
특수 스타일을 추가하여 위에 놓은 항목을 나열하려면 다음을 시도하십시오.

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>hover demo</title>
  <style>
  ul {
    margin-left: 20px;
    color: blue;
  }
  li {
    cursor: default;
  }
  span {
    color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
 
<ul>
  <li>Milk</li>
  <li>Bread</li>
  <li class="fade">Chips</li>
  <li class="fade">Socks</li>
</ul>
 
<script>
$( "li" ).hover(
  function() {
    $( this ).append( $( "<span> ***</span>" ) );
  }, function() {
    $( this ).find( "span:last" ).remove();
  }
);
 
$( "li.fade" ).hover(function() {
  $( this ).fadeOut( 100 );
  $( this ).fadeIn( 500 );
});
</script>
 
</body>
</html>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 17-11-24 조회 2,535
jQuery 17-11-24 조회 2,693
jQuery 17-11-21 조회 2,917
jQuery 17-11-21 조회 3,130
jQuery 17-11-21 조회 2,342
jQuery 17-11-10 조회 3,341
jQuery 17-11-10 조회 2,803
jQuery
[jQuery]
17-11-10 조회 2,151
JavaScript 17-11-09 조회 3,238
jQuery
[jQuery]
17-11-08 조회 1,963
jQuery 17-11-08 조회 2,230
jQuery 17-11-08 조회 2,332
jQuery 17-10-24 조회 2,109
jQuery 17-10-24 조회 2,185
jQuery
[jQuery]
17-10-24 조회 1,868
jQuery 17-10-20 조회 2,434
jQuery 17-10-20 조회 2,914
jQuery
[jQuery]
17-10-20 조회 2,203
jQuery 17-10-19 조회 1,896
jQuery
[jQuery]
17-10-19 조회 2,326
jQuery 17-10-19 조회 5,921
기타 17-10-19 조회 3,658
jQuery
[jQuery]
17-10-17 조회 2,051
jQuery 17-10-17 조회 2,207
jQuery 17-10-17 조회 2,299
PHP 17-10-16 조회 5,611
node.js 17-10-13 조회 4,647
jQuery 17-10-12 조회 2,695
jQuery 17-10-12 조회 2,139
jQuery 17-10-12 조회 1,672