如何将fancybox 100px从顶部定位,默认情况下它是居中对齐的。
我相信没有api设置。任何人都可以帮我解决实际脚本。
答案 0 :(得分:21)
我开始工作的解决方案就像这样设计包装器:
#fancybox-wrap {
position: absolute;
top: 100px !important;
}
希望它有所帮助!
答案 1 :(得分:13)
$.fancybox({
'width' : 620,
'height' : 490,
'speedIn' :600,
'speedOut' :200,
'onComplete': function() {
$("#fancybox-wrap").css({'top':'20px', 'bottom':'auto'});
}
});
答案 2 :(得分:5)
在fancyBox 2中,我使用topRatio : 0
,这个顶部移动fancyBox,然后我使用jQuery().css()
将它放在我想要的位置。例如:
$("#myfancy").fancybox({
wrapCSS : 'fancybox-custom',
maxWidth : 500,
maxHeight : 360,
fitToView : false,
width : '85%',
height : '95%',
autoSize : false,
openEffect : 'fade',
openSpeed : 'slow',
closeEffect : 'fade',
modal : true,
closeSpeed : 'slow',
topRatio : 0,
helpers : {
overlay : {
css : {
'background-color' : '#fff'
}
}
}
}).trigger('click');
jQuery('.fancybox-wrap').css('margin-top', '120px');
答案 3 :(得分:4)
scrollTop页面。
$.fancybox({
'width' : 620,
'height' : 490,
'speedIn' :600,
'speedOut' :200,
'onComplete': function() {
$(document).scrollTop(0);
$("#fancybox-wrap").css({'top':'20px', 'bottom':'auto'});
}
});
答案 4 :(得分:3)
这个有效。只需在加载fancybox css后添加样式即可。这将覆盖任何运动。
<link rel="stylesheet" type="text/css" href="../css/fancybox/jquery.fancybox-1.3.4.css" media="screen" >
<style type="text/css">div#fancybox-wrap {top:100px !important;}</style>
来源
答案 5 :(得分:3)
如果您只想将fancybox放置得有点高,可以使用此参数:“topRatio”,查看http://fancyapps.com/fancybox/#docs处的文档。
答案 6 :(得分:2)
$('.fancybox').fancybox({
topRatio: 0,
afterShow: function(){
$(".fancybox-wrap").css({"top":0, "margin":"100px 0 0"});
}
});
答案 7 :(得分:1)
我稍微调整了上面的代码。它对我来说很好。
<script type="text/javascript">
$(document).ready(function() {
$('a.fancybox').each(function(){
var fWidth = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=',''));
var fHeight = parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=',''));
var posTop = parseInt($(this).attr('href').match(/top=[0-9]+/i)[0].replace('top=',''));
var posLeft = parseInt($(this).attr('href').match(/left=[0-9]+/i)[0].replace('left=',''));
var marLeft = parseInt($(this).attr('href').match(/marleft=[0-9]+/i)[0].replace('marleft=',''));
$(this).fancybox({'type':'iframe','transitionIn':'elastic','transitionOut':'elastic','width':fWidth,'height':fHeight,onStart: function () {
//create a style that will position the fancy box relative to the element that clicked it.
var leftT=posLeft;
var topT=posTop;
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '.shekhar{ top: ' + topT + 'px !important; left: ' + leftT + '% !important; margin-left: -' + marLeft + 'px !important; }';
document.getElementsByTagName('head')[0].appendChild(style);
$('#fancybox-wrap').addClass("shekhar");
}
});
});
});
</script>
HTML就在这里:
<ul>
<li><a class="fancybox" href="http://iacampaigns.co.in/fiama/WAP/index.html?iframe&width=100&height=100&top=100&left=50&marleft=200">Iframe</a></li>
<li><a class="fancybox" href="http://iacampaigns.co.in/fiama/WAP/index.html?iframe&width=200&height=200&top=100&left=50&marleft=100">Iframe</a></li>
</ul>
答案 8 :(得分:1)
不知道你使用的fancybox版本是否为2.xxx,但在这种情况下你可以像这样设置默认的边距:
$("#myfancy").fancybox({
margin : [100, 0, 20, 0],
...
其中margin设置包装器的位置(px)(数组中的第一个数字为TOP)
答案 9 :(得分:1)
如果使用V2,下面的帮助方法可以在移动设备上执行操作:
$('.fancybox_success').fancybox({
afterShow: function () {
if ($portWidth <= $mobileBreakpoint) {
$('html,body').animate({ scrollTop: 0 }, 'slow');
}
},...
答案 10 :(得分:1)
双管齐下攻击,但使用“固定”位置而不是绝对位置将禁用滚动停止框架移出页面
内部CSS:
.fancybox-wrap { position:fixed !important; top: 100px !important; };
fancyBox jQuery:
onComplete : function(){
$('.fancybox-wrap').css({'position':'fixed', 'top':'100px'});
}
答案 11 :(得分:1)
对于本文档中提到的fancyBox 2.0
及更高版本
http://fancyapps.com/fancybox/#docs
margin :视口和fancyBox之间的最小空间。可以设置为数组 - [顶部,右侧,底部,左侧]。如果内容尺寸超出视口,则忽略右边距和下边距 整数,数组;默认值:20
示例:
$('.fc-event').fancybox({
autoCenter: true,
margin: [100, 0, 0, 0], // [top, right, bottom, left]
type: 'ajax',
答案 12 :(得分:0)
//pass in the id of the link that was clicked and set the width and height for the iframe
$.fn.fancybox_new = function (options) {
for (i = 0; i < this.length; i++) {
options._id = $(this[i]).attr("id");
switch (options._id) {
case "elementid": //set window size based on id
options.width = 375;
options.height = 190;
break;
}
$(this[i]).fancybox(options);
}
};
$("a[rel*=formWin]").fancybox_new({
onStart: function () {
//create a style that will position the fancy box relative to the element that clicked it.
if (this._id != "" && !$(this).hasClass(this._id)) {
var style = document.createElement('style');
var pos = $("#" + this._id).position();
var mRight = parseInt($("#" + this._id).css("margin-right").replace("px")) + parseInt($("#" + this._id).css("padding-right").replace("px")) + parseInt($("#" + this._id).css("margin-left").replace("px")) + parseInt($("#" + this._id).css("padding-left").replace("px"));
var mTop = parseInt($("#" + this._id).css("margin-top").replace("px", "")) + parseInt($("#" + this._id).css("padding-top").replace("px", "")) + parseInt($("#" + this._id).css("margin-bottom").replace("px", "")) + parseInt($("#" + this._id).css("padding-bottom").replace("px", ""));
style.type = 'text/css';
style.innerHTML = '.' + this._id + ' { top: ' + (pos.top + $("#" + this._id).height() + mTop) + 'px !important; right: ' + ($("body").width() - pos.left - $("#" + this._id).width() - mRight).toString() + 'px !important; left:auto !important; }';
document.getElementsByTagName('head')[0].appendChild(style);
$('#fancybox-wrap').addClass(this._id);
}
}
});
答案 13 :(得分:0)
我自己从未使用过fancybox,但看起来你需要将centerOnScroll
设置为false,然后使用css定位#fancybox-wrap
,但是你觉得合适。
答案 14 :(得分:0)
两个可能的问题:
!important
,其中position是绝对的。答案 15 :(得分:0)
我修改了fancybox库
版本:1.3.4(11/11/2010)
让这项工作:
在文件jquery.fancybox.js中找到行:
$.fancybox.center = function() {
在此范围内查找:
wrap
.stop()
.animate({
'top' : parseInt(Math.max(view[3] - 20, view[3] + ((view[1] - content.height() - 40) * 0.5) - currentOpts.padding)),
并将其更改为:
var topFromOptions = parseInt(Math.max(view[3] - 20, view[3] + ((view[1] - content.height() - 40) * 0.5) - currentOpts.padding));
if (currentOpts.top) {
topFromOptions = currentOpts.top;
}
wrap
.stop()
.animate({
'top' : topFromOptions,
在选择器传递选项(例如)上撤消fancybox时:
top: '100px'
或者你想要的东西:)
$('#fancybox-selector').fancybox({
top: '20px',
// transitionOut:'elsatic'
});
答案 16 :(得分:0)
这项工作对我来说很好
<script>
$.fancybox({
'width' : 620,
'height' : 490,
'speedIn' :600,
'speedOut' :200,
'onStart' :function()
{
$("#fancybox-wrap").addClass('my_class');
},
});
</script>
<style>
.my_class{top:20px !important; }
</style>
答案 17 :(得分:0)
就我而言,这样一个简单的解决方案帮助了我:
CSS
#YOUR_FANCYBOX_WINDOW_SELECTOR {
vertical-align: top;
}
FancyBox v3.5.2