0

嗨,所有花式盒子爱好者。我如何在这里插入助手:

     $(document).mouseleave(function() {
         $.fancybox("#feedback_form");
     });​

我被困在那里了。

4

2 回答 2

2

(我猜)你可以这样做:

     $(document).mouseleave(function() {
         var options = {
           openEffect: 'elastic',
           helpers: {
             title: {
               type: 'inside'
             }
           }
         };
         $.fancybox("#feedback_form", options);
     });​
于 2012-11-25T18:06:39.227 回答
0

这个问题不是很清楚,但我猜你正在寻找这样的东西?

 $(document).mouseleave(function() {
         $("#feedback_form").show(); // this will remove the 'display:none'
         $("#feedback_form").fancybox();
 });​
于 2012-11-25T16:49:06.000 回答