プロジェクト用のシンプルなスライダーを作成しました。ChromeとFirefoxでテストしましたが、機能しませんが、IE10リリースプレビューでは問題なく機能します。これがスライダーのフィドルですhttp://jsfiddle.net/VhtWh/2/
これがスライダーコードです
$(document).ready(function() {
// Let's make the first slide visible and hide the rest
$('#homepage-slides li').css('top','0').hide();
$('#homepage-slides li:first').addClass('slideActive').show().find('.slide-content').animate({left: '0', opacity: 1.0}, 800);
// Find all of the slides
var slides = $('#homepage-slides li');
var current = 0;
// Set up the slideshow
$('#homepage-slider .arrow').click(function(){
var li = slides.eq(current);
var nextIndex = 0;
// Depending on whether this is the next or previous
// arrow, calculate the index of the next slide accordingly.
if($(this).hasClass('slide-right')){
nextIndex = current >= slides.length-1 ? 0 : current+1;
} else {
nextIndex = current <= 0 ? slides.length-1 : current-1;
}
var next = slides.eq(nextIndex);
current = nextIndex;
// Show next slide and slide/fade in the content
next.addClass('slideActive').fadeIn('slow').find('.slide-content').animate({left: '0', opacity: 1.0}, 800);
// Hide all other slides and slide/fade out the content
li.removeClass('slideActive').fadeOut('slow').find('.slide-content').animate({left: '-2400', opacity: 0}, 800);
// Hide next arrow after last slide
if ( nextIndex >= slides.length-1 ) {
$('#homepage-slider .arrow').addClass('hide');
}
});
});
PS:ナビゲーションリンクは、chromeとfirefoxのcssで設定されているように強調表示されませんが、IE10では完全に機能します