jquery – 定义fancybox默认值的方式/位置?

前端之家收集整理的这篇文章主要介绍了jquery – 定义fancybox默认值的方式/位置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
让我们说这是我的fancybox配置:
$(".fancybox").fancybox({
      'transitionIn':'fade','transitionOut':'fade','speedIn':150,'speedOut':150,'changeSpeed':150,'changeFade':150,'overlayOpacity':0.1,'overlayColor':'#000000','padding':0,'margin':20,'titleShow':false,'centerOnScroll':true
   });

但是,我想做的是以某种方式将配置定义为fancybox默认值,因此当我绑定一个元素时,我只能这样做:

$( “为newElement”)的fancybox();

它会自动拥有我的配置.

解决方法

根据这里的文件http://fancybox.net/api

You can pass options as key/value object to fancybox() function or modify them at the bottom of fancybox JS file

原文链接:https://www.f2er.com/jquery/179152.html

猜你在找的jQuery相关文章