图像悬停缩放DELAY像谷歌图像

时间:2011-10-25 06:04:16

标签: javascript jquery hover zoom delay

我在一个视频教程中写过js的代码,但在动画之前没有延迟。 我已经尝试了很多使用delay()和setTimeout()的方法,但没有得到所需的结果......

如果有人可以帮助我?请这样做:)

我会非常感激。

以下是具有在线编辑和运行功能的代码:http://jsfiddle.net/S2svG/

这是js代码:

$(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
                }
            }]
        });                    
});     

2 个答案:

答案 0 :(得分:3)

这是你需要的:

http://jsfiddle.net/S2svG/48/

干杯

答案 1 :(得分:2)

如果你想在鼠标悬停事件和动画之间出现延迟,你可能需要查看hoverIntent jQuery plugin

  

hoverIntent是一个试图确定用户的插件   意图......就像一个水晶球,只有鼠标移动!它很像   (并源自)jQuery的内置悬停。但是,而不是   立即调用onMouseOver函数,它等待直到   用户的鼠标在拨打电话前放慢速度。

话虽如此,您可能想看看jQuery.delay()Demo here