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

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

팁앤테크

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

페이지 정보

profile_image
작성자 제로
댓글 0건 조회 73,955회 작성일 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 829건 1 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
829 제로 4174 06-18
828 제로 6954 03-21
827 제로 6254 02-23
826 제로 32265 11-02
825 제로 35372 07-10
824 제로 48261 04-06
823 제로 33028 02-21
822 제로 39926 12-31
821 제로 32169 12-24
820 제로 32011 12-04
819 제로 34801 10-17
818 제로 33682 10-02
817 제로 63080 08-04
816 제로 31978 08-04
815 제로 44873 08-03
814 제로 44908 07-08
813 제로 77257 07-08
812 제로 94134 07-06
811 제로 33185 06-09
810 제로 39325 06-03
809 제로 37666 04-16
808 제로 38164 03-29
807 제로 32204 03-26
806 제로 39901 03-12
805 제로 34546 03-10

검색

회원로그인

회원가입

사이트 정보

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

접속자집계

오늘
4,389
어제
16,905
최대
431,155
전체
10,618,174
Copyright (c) 株式会社YHPLUS. All rights reserved.