wordpress テーマで nivo スライダー jQuery プラグインを使用しています (そうです、WordPress プラグインではなく jQuery プラグインを使用しています) 何らかの理由で画像の遷移がひどいです。
同様に、それらは遅くて途切れ途切れであり、画像が再び変化するまでトランジション効果が見られます. これは私が意味するものです:
これが私の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
});
});