簡體   English   中英

圖像懸停縮放像谷歌圖像

[英]Image Hover Zoom like Google Images

我寫了一些jquery代碼(來自一個視頻教程)來制作像谷歌圖片一樣的鼠標懸停縮放效果。 我想在縮放前添加一些延遲(0.5-1 秒),但我不知道該怎么做!!! 我用delay()setTimeout()嘗試了很多方法,但沒有任何幫助!!!
我不知道為什么......這是javascript代碼:

    $(function(){

        $.fn.popOut=function(user_opts){            
            return this.each(function(){

                var opts=$.extend({
                    useId:"poppedOut",
                    padding:20,
                    border:0,
                    speed:200
                },user_opts);

                $(this).mouseover(function(){
                    // kill any instance of this already
                    $("#"+opts.useId).remove();

                    // make a copy of the hovered guy
                    var $div=$(this).clone();

                    // setup for prelim stuff
                    $div.css({
                        "position":"absolute",
                        "border":opts.border,
                        "top":$(this).offset().top,
                        "left":$(this).offset().left,
                        "-moz-box-shadow":"0px 0px 12px black",
                        "-webkit-box-shadow":"0px 0px 12px black",
                        "z-index":"99"
                    });

                    // store all of the old props so it can be animate back
                    $div.attr("id",opts.useId)
                        .attr("oldWidth",$(this).width())
                        .attr("oldHeight",$(this).height())
                        .attr("oldTop",$(this).offset().top)
                        .attr("oldLeft",$(this).offset().left)
                        .attr("oldPadding",$(this).css("padding"));

                    // put this guy on the page
                    $("body").prepend($div);

                    // animate the div outward
                    $div.animate({
                        "top":$(this).offset().top-Math.abs($(this).height()-opts.height),
                        "left":$(this).offset().left-opts.padding,
                        "height":opts.height,
                        "padding":opts.padding
                    },opts.speed);

                    // loop through each selector and animate it to its css object
                    for(var eachSelector in opts.selectors){
                        var selectorObject=opts.selectors[eachSelector];
                        for(var jquerySelector in selectorObject){
                            var cssObject=selectorObject[jquerySelector];
                            $div.find(jquerySelector).animate(cssObject,opts.speed);
                        }
                    }

                    $div.mouseleave(function(){
                        $("#"+opts.useId).animate({
                            width:$(this).attr("oldWidth"),
                            height:$(this).attr("oldHeight"),
                            top:$(this).attr("oldTop"),
                            left:$(this).attr("oldLeft"),
                            padding:$(this).attr("oldPadding")
                        },0,function(){
                            $(this).remove();
                        });
                    });
                });
            });
        };
        $(".productBox").popOut({
            height:300,
            border:"1px solid #333",
            selectors:[{".productDescription":{
                    height:150
                }
            }]
        });
    });

和示例 HTML 代碼:

    <div class="productBox" style="width:300px;height:235px;margin-right:10px;float:left;background-color:#fff;">
    <div class="productImage" style="width:200px;height:116px;overflow:hidden;">
        <a href="#"><img src="/home/ponomar/plakat5.jpg" width="100%"></a>
    </div>
    <div class="productContent" style="float:left;">
        <div class="productTitle" style="height:29px;">Product title</div>
        <div class="productDescription" style="height:70px;">Here is description of the product.</div>
        <div class="buyButton" style="margin-top:0;float:left;"><a href="#">Buy this!</a></div>
    </div>
</div>
<div class="productBox" style="width:200px;height:235px;margin-right:10px;float:left;background-color:#fff;">
    <div class="productImage" style="width:200px;height:116px;overflow:hidden;">
        <a href="#"><img src="/home/ponomar/plakat5.jpg" width="100%"></a>
    </div>
    <div class="productContent" style="float:left;">
        <div class="productTitle" style="height:29px;">Product title</div>
        <div class="productDescription" style="height:70px;">Here is description of the product.</div>
        <div class="buyButton" style="margin-top:0;float:left;"><a href="#">Buy this!</a></div>
    </div>
</div>

誰能幫我做到這一點? 此外,我認為這是非常有用的腳本。

提前致謝!!!

最好的例子可以在流行圖片中找到, 比如谷歌圖片

也看看演示

如果要將克隆的對象復制到原始 div,則只需執行以下步驟:

將 id 添加到您的原始 div 和相應代碼上方的以下代碼:

var old_box = $div.attr('id');

$div.attr("id", opts.useId)
    .attr("oldWidth", $(this).width())
    .attr("oldHeight", $(this).height())
    .attr("oldTop", $(this).offset().top)
    .attr("oldLeft", $(this).offset().left)
    .attr("oldPadding", $(this).css("padding"));

在 mouseleave 事件上方添加以下代碼:

$div.click(
    function() {
        $("#" + old_box).html($(this).html());
        $(this).remove();
    }
);

這可能就是你要找的: hoverIntent jQuery Plug-in

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM