development

jQuery를 사용하여 롤오버시 이미지 소스 변경

big-blog 2020. 2. 17. 22:19
반응형

jQuery를 사용하여 롤오버시 이미지 소스 변경


이미지와 롤오버 이미지가 몇 개 있습니다. jQuery를 사용하여 onmousemove / onmouseout 이벤트가 발생할 때 롤오버 이미지를 표시하거나 숨기려고합니다. 내 이미지 이름은 모두 다음과 같은 패턴을 따릅니다.

원본 이미지 : Image.gif

롤오버 이미지 : Imageover.gif

onmouseover 및 onmouseout 이벤트에서 이미지 소스 "over" 부분을 ​​각각 삽입하고 제거하고 싶습니다 .

jQuery를 사용하여 어떻게 할 수 있습니까?


준비를 설정하려면 :

$(function() {
    $("img")
        .mouseover(function() { 
            var src = $(this).attr("src").match(/[^\.]+/) + "over.gif";
            $(this).attr("src", src);
        })
        .mouseout(function() {
            var src = $(this).attr("src").replace("over.gif", ".gif");
            $(this).attr("src", src);
        });
});

URL 이미지 소스를 사용하는 사람들 :

$(function() {
        $("img")
            .mouseover(function() {
               var src = $(this).attr("src");
               var regex = /_normal.svg/gi;
               src = this.src.replace(regex,'_rollover.svg');
               $(this).attr("src", src);

            })
            .mouseout(function() {
               var src = $(this).attr("src");
               var regex = /_rollover.svg/gi;
               src = this.src.replace(regex,'_normal.svg');
               $(this).attr("src", src);

            });
    });

jQuery 사용에 대해 문의하고 있지만 CSS를 사용하여 JavaScript를 해제 한 브라우저에서도 동일한 효과를 얻을 수 있습니다.

#element {
    width: 100px; /* width of image */
    height: 200px; /* height of image */
    background-image: url(/path/to/image.jpg);
}

#element:hover {
    background-image: url(/path/to/other_image.jpg);
}

여기에 더 긴 설명이 있습니다

그러나 스프라이트를 사용하는 것이 더 좋습니다. simple-css-image-rollover


둘 이상의 이미지가 있고 이름 지정 규칙에 의존하지 않는 일반적인 것이 필요한 경우.

HTML

<img data-other-src="big-zebra.jpg" src="small-cat.jpg">
<img data-other-src="huge-elephant.jpg" src="white-mouse.jpg">
<img data-other-src="friendly-bear.jpg" src="penguin.jpg">

자바 스크립트

$('img').bind('mouseenter mouseleave', function() {
    $(this).attr({
        src: $(this).attr('data-other-src') 
        , 'data-other-src': $(this).attr('src') 
    })
});

    /* Teaser image swap function */
    $('img.swap').hover(function () {
        this.src = '/images/signup_big_hover.png';
    }, function () {
        this.src = '/images/signup_big.png';
    });

"이 이미지"및 "해당 이미지"로 제한되지 않는 일반적인 솔루션은 HTML 코드 자체에 'onmouseover'및 'onmouseout'태그를 추가하는 것입니다.

HTML

<img src="img1.jpg" onmouseover="swap('img2.jpg')" onmouseout="swap('img1.jpg')" />

자바 스크립트

function swap(newImg){
  this.src = newImg;
}

설정에 따라 이와 비슷한 것이 더 잘 작동하고 HTML 수정이 더 적을 수도 있습니다.

HTML

<img src="img1.jpg" id="ref1" />
<img src="img3.jpg" id="ref2" />
<img src="img5.jpg" id="ref3" />

자바 스크립트 / jQuery

// Declare Arrays
  imgList = new Array();
  imgList["ref1"] = new Array();
  imgList["ref2"] = new Array();
  imgList["ref3"] = new Array();

//Set values for each mouse state
  imgList["ref1"]["out"] = "img1.jpg";
  imgList["ref1"]["over"] = "img2.jpg";
  imgList["ref2"]["out"] = "img3.jpg";
  imgList["ref2"]["over"] = "img4.jpg";
  imgList["ref3"]["out"] = "img5.jpg";
  imgList["ref3"]["over"] = "img6.jpg";

//Add the swapping functions
  $("img").mouseover(function(){
    $(this).attr("src", imgList[ $(this).attr("id") ]["over"]);
  }

  $("img").mouseout(function(){
    $(this).attr("src", imgList[ $(this).attr("id") ]["out"]);
  }

$('img.over').each(function(){
    var t=$(this);
    var src1= t.attr('src'); // initial src
    var newSrc = src1.substring(0, src1.lastIndexOf('.'));; // let's get file name without extension
    t.hover(function(){
        $(this).attr('src', newSrc+ '-over.' + /[^.]+$/.exec(src1)); //last part is for extension   
    }, function(){
        $(this).attr('src', newSrc + '.' + /[^.]+$/.exec(src1)); //removing '-over' from the name
    });
});

첫 번째 줄에서 이미지 클래스를 변경할 수 있습니다. 더 많은 이미지 클래스 (또는 다른 경로)가 필요한 경우 사용할 수 있습니다

$('img.over, #container img, img.anotherOver').each(function(){

등등.

작동해야합니다. 테스트하지 않았습니다. :)


나는 다음과 같은 우버 한 라이너를 바라고있었습니다.

$("img.screenshot").attr("src", $(this).replace("foo", "bar"));

찾고있는 솔루션이 애니메이션 버튼 인 경우 스프라이트와 CSS의 조합으로 성능을 향상시킬 수 있습니다. 스프라이트는 사이트의 모든 이미지 (헤더, 로고, 버튼 및 가지고있는 모든 장식)를 포함하는 거대한 이미지입니다. 가지고있는 각 이미지는 HTTP 요청을 사용하며, 더 많은 HTTP 요청은로드하는 데 더 많은 시간이 걸립니다.

.buttonClass {
    width: 25px;
    height: 25px;
    background: url(Sprite.gif) -40px -500px;
}
.buttonClass:hover {
    width: 25px;
    height: 25px;
    background: url(Sprite.gif) -40px -525px;
}

0px 0px좌표는 스프라이트의 왼쪽 상단 모서리 될 것입니다.

그러나 Ajax 또는 이와 유사한 사진 앨범을 개발하는 경우 JavaScript (또는 모든 프레임 워크)가 가장 좋습니다.

즐기세요!


$('img').mouseover(function(){
  var newSrc = $(this).attr("src").replace("image.gif", "imageover.gif");
  $(this).attr("src", newSrc); 
});
$('img').mouseout(function(){
  var newSrc = $(this).attr("src").replace("imageover.gif", "image.gif");
  $(this).attr("src", newSrc); 
});

얼마 전에 해결책을 찾고 있었지만 아래와 비슷한 스크립트를 찾았습니다. 일부 조정 후 나에게 도움이되었습니다.

마우스가 이미지를 벗어난 곳 (image-example_off.jpg)에서 거의 항상 "off"로 설정되는 두 개의 이미지와 마우스를 움직 인 시간에 필요한 대체 이미지 ( "on")를 처리합니다. image-example_on.jpg)가 표시됩니다.

<script type="text/javascript">        
    $(document).ready(function() {        
        $("img", this).hover(swapImageIn, swapImageOut);

        function swapImageIn(e) {
            this.src = this.src.replace("_off", "_on");
        }
        function swapImageOut (e) {
            this.src = this.src.replace("_on", "_off");
        }
    });
</script>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>JQuery</title>
<script src="jquery.js" type="text/javascript"> </script>
<style type="text/css">
    #box{
        width: 68px;
        height: 27px;
        background: url(images/home1.gif);
        cursor: pointer;
    }
</style>

<script type="text/javascript">

$(function(){

    $('#box').hover( function(){
        $('#box').css('background', 'url(images/home2.gif)');

    });
    $('#box').mouseout( function(){
        $('#box').css('background', 'url(images/home1.gif)');

    });

});
</script>
</head>

<body>
<div id="box" onclick="location.href='index.php';"></div>
</body>
</html>

나는 다음과 같은 코드를 만들었다 :)

그것은 당신이 예를 들어 _hover와 함께라는 두 번째 파일을,있을 때 만 작동 facebook.png하고facebook_hover.png

$('#social').find('a').hover(function() {
    var target = $(this).find('img').attr('src');
    //console.log(target);
    var newTarg = target.replace('.png', '_hover.png');
    $(this).find('img').attr("src", newTarg);
}, function() {
    var target = $(this).find('img').attr('src');
    var newTarg = target.replace('_hover.png', '.png');
    $(this).find('img').attr("src", newTarg);
});

<img src="img1.jpg" data-swap="img2.jpg"/>



img = {

 init: function() {
  $('img').on('mouseover', img.swap);
  $('img').on('mouseover', img.swap);
 }, 

 swap: function() {
  var tmp = $(this).data('swap');
  $(this).attr('data-swap', $(this).attr('src'));
  $(this).attr('str', tmp);
 }
}

img.init();

Richard Ayotte의 코드에서 적응-ul / li 목록 (여기 래퍼 div 클래스를 통해 찾음)에서 img를 대상으로 지정하려면 다음과 같이하십시오.

$('div.navlist li').bind('mouseenter mouseleave', function() {    
    $(this).find('img').attr({ src: $(this).find('img').attr('data-alt-src'), 
    'data-alt-src':$(this).find('img').attr('src') }
); 

참고 URL : https://stackoverflow.com/questions/540349/change-the-image-source-on-rollover-using-jquery



도와주세요.
반응형