我不知道有多少人使用过此 plugin , demo ,但我想要的是更改默认行为插件类似于next
。目前,当您点击previous
或if (href.match(/\.(jpeg|jpg|gif|png)$/i) !== null) {
var img = $('<img>', { src: href });
img.one('load', function () {
var wrap = $('<div class="nivo-lightbox-image" />');
wrap.append(img); //gets appended here
content.html(wrap).removeClass('nivo-lightbox-loading');
// Vertically center images
wrap.css({
'line-height': $('.nivo-lightbox-content').height() + 'px',
'height': $('.nivo-lightbox-content').height() + 'px' // For Firefox
});
}).each(function () {
if (this.complete) $(this).load();
});
}
按钮时,图片将只是附加而没有任何可视动画。我只想在追加时动画图像!谁能提出任何好的解决方案!!下面是附加在图像上的代码:
if (Screen.orientation == ScreenOrientation.Portrait) {
// portrait
}
else
{
// landscape
}
使用任何类型的动画都可以
答案 0 :(得分:0)
嗯,我刚刚添加fadeIn
后添加wrap.append(img).fadeIn('4000');
似乎做了某种动画,虽然这是我接受的。这是我做的:
Sub Auto_Open()
MsgBox ("Hello World!")
End Sub