3

我正在使用带有插件的 fancybox jquery.easydrag.js。这样做的原因是能够拖动fancybox。

它似乎工作正常,但是当花式框有滚动条时问题就来了。即,例如,当单击提交而不输入任何字段时,屏幕上的验证会导致滚动条。这通常很好,但滚动条会导致可拖动功能出现各种问题,因此当我尝试上下单击滚动条时,它实际上会移动整个窗口。因此,对于可以移动哪些内容以及如何处理滚动条似乎感到困惑。

        claimLink.fancybox({
        'width': 500,
        'height': 590,
        'autoDimensions': false,
        'onCleanup': function (e) {

            var modelClaimFormId = $j(e).attr("href").replace("body", "");
            var modalClaimForm = $j(modelClaimFormId);

            if (!($j(modalClaimForm).valid())) {
                $j(claimForm).remove();
                $j(e).parents("tr").remove();
            }

        }
    });

    $j("#fancybox-wrap").easydrag(true);

编辑 :

我设法为 input 和 textareas 添加了一些东西来忽略下面的滚动……只是想知道我可以为滚动条做什么。

                $j("#fancybox-wrap").easydrag(true);

            $j("#fancybox-wrap input,textarea").click(function(){
                $j("#fancybox-wrap").dragOff();
            });
            $j("#fancybox-wrap input,textarea").mouseover(function () {
                $j("#fancybox-wrap").dragOff();
            });
            $j("#fancybox-wrap input,textarea").blur(function () {
                $j("#fancybox-wrap").dragOn();
            });
            $j("#fancybox-wrap input,textarea").mouseout(function () {
                $j("#fancybox-wrap").dragOn();
            });

是easydrag插件的JS链接

4

4 回答 4

9

我在 2009 年为 v1.2.1 发布了关于如何使 fancybox 可拖动的第一个示例。然后我发布了一些注释以使其与 v1.3.1 一起使用,如此处所示,但是当引入 fancybox v1.3.4 时,该easyDrag插件不像以前的版本那样流畅,并且开始出现错误。我没有时间找到解决方法......所以我放弃了它。

解决方案很简单:该easyDrag插件提供了一种设置“处理程序”的方法,如此处所述,因此无需按住并拖动整个#fancybox-wrap容器,这会阻止访问滚动条(如果有),您只需从特定定义的元素拖动灯箱. 这样的处理程序可以附加到选择器并使用回调 API 选项#fancybox-wrap在 EasyDrag 插件中设置它,例如:onComplete

'onComplete': function(){
  // append the handler on the top-left corner of fancybox
   $("#fancybox-wrap").append("<button id='handler'>Drag me</button>");
  // set the handler using the handler's element ID
   $("#fancybox-wrap").setHandler('handler');
}

请注意,您可以使用任何元素作为处理程序,在我的示例中,我使用了一个 html 按钮,但如果愿意,您可以使用图像。重要的是为处理程序分配最少的重要css属性,以便可以将其附加到#fancybox-wrap容器而不会出现以下问题:

width: 80px; /* or whatever needed */
height: 24px;
position: absolute; /* important to position the handler into the fancybox wrap */
top: 0; /* top-left corner of the box but can be anywhere */
left: 0;
display: block;
z-index: 1120; /* important to be over the box */

其他属性可以是化妆品。

看到它在这里工作

完成并提交表单后,响应将是一个带有滚动条的新花式框,您可以独立于 easyDrag 处理程序使用它。

请随时分析代码并根据自己的需要对其进行自定义(别忘了给我赏金;)

更新#fancybox-wrap:请注意,由于我们每次触发fancybox时都会将处理程序附加到容器中,因此我们需要在使用onClosed回调关闭fancybox时将其删除,否则如果再次打开fancybox并出现意外结果,我们将复制处理程序:

'onClosed' : function() {
  $("#fancybox-wrap #handler").remove();
}

我也更新了我的 DEMO

最后说明:此解决方案适用于 fancybox v1.3.4

我没有用v2.x测试过它,但我不明白为什么它不起作用。只需确保EasyDrag将处理程序绑定并附加到.fancybox-wrap选择器即可

$(".fancybox-wrap").easydrag(); 

您可以使用afterShow回调将处理程序附加到它并afterClose删除它。

于 2012-05-28T09:00:32.790 回答
2

使用上述解决方案为#fancybox-wrap 选择器添加处理程序以及使用onComplete 回调API 的EasyDrag 插件,我发现这与fancybox 1.3.4 标题元素很好地配合,以创建具有滚动功能的可拖动fancybox。使用标题,关闭后无需删除。

 <script type="text/javascript" src="@Url.Content("~/fancybox/jquery.mousewheel-3.0.4.pack.js")"></script>
 <script type="text/javascript" src="@Url.Content("~/fancybox/jquery.fancybox-1.3.4.pack.js")"></script> 
 <script src="@Url.Content("~/Scripts/jquery.easydrag.handler.beta2.js")" type="text/javascript"></script> 
 <script>    
     //Fancybox
     $(document).ready(function () {            
         $("#iframeVideoPop").fancybox({
             'width': 890,
             'height': 595,
             'type': 'iframe',
             'autoScale': 'false',
             'hideOnContentClick': false,
             'onComplete': function() {
                  //Style the title where and how you want it
                  $("#fancybox-title").css({'top':'-20px', 'bottom':'auto'});
                  //Set the fancybox-title as the handler
                  $("#fancybox-wrap").setHandler('fancybox-title');
               }
         });

        $("#fancybox-wrap").easydrag();

     }); //ready
 <script>
于 2012-11-14T21:19:09.503 回答
0

在测试了这些解决方案后,我遇到了拖动 iframe 的问题。为了解决这个问题,我切换到用于拖动的jQuery 1.9.1 UI插件,并在拖动时创建了一个透明图像。拖动后删除图像以访问内容。与fancybox iframe 配合使用非常好,并且可以在iframe 上快速拖动。请参阅下面的示例代码。

$("#iframePop").fancybox({
             'width': 890,
             'height': 430,
             'type': 'iframe',
             'autoScale': 'false',
             'hideOnContentClick': false,
             'onComplete': function() {
                  $("#fancybox-title").css({'top':'-2px', 'left':'15px', 'bottom':'auto', 'cursor':'move'});                       
                  $("#fancybox-wrap" ).draggable({ handle: "fancybox-title", iframeFix: true, 
                        start: function(ev,ui){$("#fancybox-wrap").append("<img src='@Url.Content("~/Content/Images/transparent.png")' id='hidenImg' style='border: 1px solid black; width: 640px; height: 400px; top: 20px; position: absolute; z-index: 10000;' />")}, 
                        drag: function(ev,ui){}, 
                        stop: function(ev, ui){$("#fancybox-wrap #hidenDiv").remove()} 
                  });  
                }
         });
于 2012-11-16T02:43:52.333 回答
0

为了消除将 Easydrag 与 Fancybox 结合使用引起的滚动条问题,您需要消除滚动条。默认情况下,Fancybox CSS 样式表将overflow:auto规则应用于由 Fancybox 生成的元素,该元素环绕 Fancybox 内显示的内容。

要覆盖它,请包含您自己的 CSS 规则,以取代 Fancybox 应用于包装器的规则。将此样式块放在<head>网页的部分中:

<style>

    /* id of the element generated and used by Fancybox as a wrapper around
       the generated content. */
    #fancy_ajax {
        /* Use the important identifier to ensure the overflow:auto is suppressed */
        overflow:none !important;

    }
</style>

这将消除滚动条并允许轻松拖动插件顺利工作。

于 2012-05-26T03:50:22.837 回答