[jQuery] jQuery로 만든 롤오버 이미지 소스 > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[jQuery] jQuery로 만든 롤오버 이미지 소스

페이지 정보

profile_image
작성자 제로
댓글 0건 조회 73,582회 작성일 14-03-29 22:29

본문

롤오버 이미지 스크립트를 jquery로 간단하게 만들어 봤습니다. .menu 안의 링크(<a>)로 싸인 이미지에 마우스오버시 확장자앞에 _r 을 붙이고 마우스아웃시 _r 을 떼는 소스입니다.

<div class="menu">
<a href="#"><img src="http://i1.daumcdn.net/cfs.tistory/static/images/xBoxReplace_250.png" height="250" width="250"></a>
<a href="#"><img src="http://i1.daumcdn.net/cfs.tistory/static/images/xBoxReplace_250.png" height="250" width="250"></a>
<a href="#"><img src="http://i1.daumcdn.net/cfs.tistory/static/images/xBoxReplace_250.png" height="250" width="250"></a>
</div>

<script type="text/javascript">
$(document).ready(function()
{
    $(".menu a img").mouseover(function()
    {
        $(this).attr("src", $(this).attr("src").replace(/(.gif|.jpg|.png)$/, "_r$1"))
    }).mouseout(function()
    {
        $(this).attr("src", $(this).attr("src").replace(/_r(.gif|.jpg|.png)$/, "$1"));
    });
});
</script>

댓글목록

등록된 댓글이 없습니다.

Total 779건 8 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
604 제로 60294 11-20
603 제로 80569 11-19
602 제로 47412 11-17
601 제로 52185 11-17
600 제로 67949 11-07
599 제로 80027 10-24
598 제로 69765 10-22
597 제로 78357 10-07
596 제로 74987 07-02
595 제로 63905 06-18
594 제로 65227 06-11
593 제로 70317 06-11
592 제로 62402 05-09
591 제로 71215 05-02
열람중 제로 73583 03-29
589 제로 68434 01-22
588 제로 64496 01-09
587 제로 73853 01-08
586 제로 70782 01-06
585 제로 91928 12-31
584 제로 72667 12-26
583 제로 69946 12-24
582 제로 71698 12-01
581 제로 68981 11-21
580 제로 48980 11-08

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5470-4714
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
1,334
어제
16,995
최대
431,155
전체
10,525,982
Copyright (c) 株式会社YHPLUS. All rights reserved.