我在我的 wordpress 主题中使用 nivo 滑块 jQuery 插件(没错,我使用的是 jQuery 插件而不是 WordPress 插件),无论出于何种原因,图像转换都是可怕的。
就像,它们缓慢而不稳定,你会看到过渡效果,直到图像再次改变。这就是我的意思:
这是我的 jQuery 代码
jQuery(document).ready(function() {
var logo_width = jQuery('.logo a img').width();
jQuery('.logo').width(logo_width);
jQuery('#cycler').nivoSlider({
effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
slices: 15, // For slice animations
boxCols: 6, // For box animations
boxRows: 2, // For box animations
animSpeed: 500, // Slide transition speed
pauseTime: 3000, // How long each slide will show
startSlide: 0, // Set starting Slide (0 index)
directionNav: true, // Next & Prev navigation
controlNav: true, // 1,2,3... navigation
controlNavThumbs: false, // Use thumbnails for Control Nav
manualAdvance: false, // Force manual transitions
prevText: 'Prev', // Prev directionNav text
nextText: 'Next', // Next directionNav text
randomStart: false, // Start on a random slide
});
});