Изображение Наведите курсор, как Google Images - PullRequest
0 голосов
/ 24 октября 2011

Я написал код jquery (из одного видеоурока), чтобы сделать эффект масштабирования при наведении мыши, как на картинках Google.Я хочу добавить задержку перед увеличением (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>

Может кто-нибудь помочь мне сделать это?кроме того, я думаю, что это очень полезный скрипт.

Заранее спасибо !!!

Ответы [ 3 ]

0 голосов
/ 23 апреля 2012
0 голосов
/ 17 августа 2012

Если вы хотите скопировать клонированный объект в ваш оригинальный 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();
    }
);
0 голосов
/ 24 октября 2011

Это может быть то, что вы ищете: hoverIntent Плагин jQuery

...