我用javascript創建了一個簡單的圖像旋轉器,但它對於「較舊的瀏覽器」(例如IE 6,7和8)速度較慢。圖像將首先加載我認爲,然後啓動旋轉器..一些技巧,使其更快?Javascript image rotator在較舊的瀏覽器中速度較慢
爲什麼我自己創造了一個旋轉器?我發現的所有旋轉器都會剪切(剪切)圖像。我需要完整的圖像......必要時有一些空白左/右或上/下。
JavaScript部分:
//Loop through pictures
var tid = setInterval(mycode, 3000);
function mycode() {
if($.random(0,1) == 1){
//Fade
$('#alleplaatjes img.active').fadeOut(500,function(){
$(this).removeClass();
if($(this).next().length == 0){
$('#alleplaatjes img').first().fadeIn(500);
$('#alleplaatjes img').first().addClass('active');
} else {
$(this).next().fadeIn(500);
$(this).next().addClass('active');
}
});
} else {
//Slide
$('#alleplaatjes img.active').slideUp(500,function(){
$(this).removeClass();
if($(this).next().length == 0){
$('#alleplaatjes img').first().slideDown(500);
$('#alleplaatjes img').first().addClass('active');
} else {
$(this).next().slideDown(500);
$(this).next().addClass('active');
}
});
}
};
PHP部分:
<?php
$dir = "/home/zwuq/domains/***/public_html/afbeelding/";
foreach(glob($dir."*") as $file){
$afbeelding = 'afbeelding/'.str_replace($dir, '', $file);
$toevoeging = FALSE;
if(!$eerste_plaatje){
$toevoeging = ' class="active"';
$eerste_plaatje = $afbeelding;
}
$plaatjes .= '<img'.$toevoeging.' src="'.$afbeelding.'" style="max-width: 99%; max-height: 99%;">';
}
?>
HTML部分:
<div id="alleplaatjes" style="width:100%; height:100%; margin:0px; padding:0px; z-index:1; text-align: center;">
<? echo $plaatjes; ?>
</div>
定義 「舊的瀏覽器」? – 2011-12-20 18:22:56
你只是指舊版瀏覽器,還是說舊版瀏覽器的舊版電腦? – jprofitt 2011-12-20 18:24:26
剛剛添加:)例如IE6,7和8 – Roy 2011-12-20 18:25:57