有沒有辦法去除Fancybox 2上的投影?有沒有CSS解決方案?我花了很長時間用CSS來嘗試各種解決方案,並試圖破解JS,但似乎沒有任何工作。請幫忙。這就是我所說的Fancybox。從Fancybox 2中刪除投影?
<script type="text/javascript">
$(document).ready(function() {
$(".fancybox").fancybox({
afterLoad: function(){
this.title = $(this.element).next('.newTitle').html();
},
padding: 0,
openEffect: 'fade',
closeEffect: 'fade',
prevEffect: 'fade',
nextEffect: 'fade',
closeBtn : false,
arrows : false,
helpers: {
title : { type : 'outside' },
buttons: {},
overlay: {
css: {
'background': 'rgba(255, 255, 255, 1.5)'
}
}
}
});
});
</script>
你可以創建一個jsfiddle嗎? – geedubb