jQuery和php图像旋转拼图

时间:2010-01-11 06:55:41

标签: php jquery image fadein fadeout

Jquery拼图

我有一个php脚本,它从文件夹中返回随机jpg图像的名称。这很好,因为我根本不需要重命名图像;我只是把它们放在文件夹中,随机发生器工作。现在,我像这样调用脚本 - http://mydomain.com/images/rotate.php - 并在一个简单的网页上重新加载,它会交换图像。

但是我想让它与jQuery一起工作,因为我想让图像以十秒左右的间隔换成新图像,并且还淡入它们并淡出它们。

编辑1/23/10:

这可以通过交换spacer.gif来实现。可能有更优雅的解决方案,但这对我有用。 Munch通过MidnightLightning的想法找到了它:

function swapImage(){
  var time = new Date();
  $('#image').fadeOut(1000)
   .attr('src', 'http://mydomain.com/spacer.gif')
   .attr('src', 'http://mydomain.com/images/rotate.php?'+time.getTime())
   .fadeIn(1000);
}

var imageInterval = setInterval('swapImage()',10*1000); 

这是rotate.php:

<?php

$folder = '.';


    $extList = array();
    $extList['gif'] = 'image/gif';
    $extList['jpg'] = 'image/jpeg';
    $extList['jpeg'] = 'image/jpeg';
    $extList['png'] = 'image/png';


$img = null;

if (substr($folder,-1) != '/') {
    $folder = $folder.'/';
}

if (isset($_GET['img'])) {
    $imageInfo = pathinfo($_GET['img']);
    if (
        isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
        file_exists( $folder.$imageInfo['basename'] )
    ) {
        $img = $folder.$imageInfo['basename'];
    }
} else {
    $fileList = array();
    $handle = opendir($folder);
    while ( false !== ( $file = readdir($handle) ) ) {
        $file_info = pathinfo($file);
        if (
            isset( $extList[ strtolower( $file_info['extension'] ) ] )
        ) {
            $fileList[] = $file;
        }
    }
    closedir($handle);

    if (count($fileList) > 0) {
        $imageNumber = time() % count($fileList);
        $img = $folder.$fileList[$imageNumber];
    }
}

if ($img!=null) {
    $imageInfo = pathinfo($img);
    $contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
    header ($contentType);
    readfile($img);
} else {
    if ( function_exists('imagecreate') ) {
        header ("Content-type: image/png");
        $im = @imagecreate (100, 100)
            or die ("Cannot initialize new GD image stream");
        $background_color = imagecolorallocate ($im, 255, 255, 255);
        $text_color = imagecolorallocate ($im, 0,0,0);
        imagestring ($im, 2, 5, 5,  "IMAGE ERROR", $text_color);
        imagepng ($im);
        imagedestroy($im);
    }
}

?>

6 个答案:

答案 0 :(得分:4)

我认为这样做的缺点是新图像会有一个加载周期,因此动画可能有点古怪。如果$ _GET值等于一个东西,那么在该文件中有两个部分可能是有益的,其中返回路径,如果未设置$ _GET值或等于其他值,则返回图像。这样你可以预加载一系列图像,图像之间会有更平滑的动画。

话虽如此,在我看来,这样的事情应该有效。

$(document).ready(function(){
   function swapImage(){
      var time = new Date();
      $('#image').fadeOut(1000)
       .attr('src', 'http://mydomain.com/images/rotate.php?'+time.getTime())
       .fadeIn(1000);
   }

   var imageInterval = setInterval('swapImage()',10*1000); 
});

时间使得浏览器认为它正在获得新的图像。

<强> spacer.gif的

要使用黑色间隔物执行此操作,我建议将图像包装在div中,并为div提供#000背景颜色以匹配间隔符:

#image-wrap{background-color:#000;}

它会使图像实际上变为黑色,而不是淡化到当前的背景颜色,变为黑色,然后逐渐消失。这与上面的js非常相似:

function swapImage(){
  var time = new Date();
  $('#image').fadeOut(1000)
   .attr('src', 'http://mydomain.com/spacer.gif')
   .attr('src', 'http://mydomain.com/images/rotate.php?'+time.getTime())
   .fadeIn(1000);
}

var imageInterval = setInterval('swapImage()',10*1000); 

保留时间可能没有必要,但是嘿,这是另一个防止浏览器缓存“图像”的安全措施。

答案 1 :(得分:2)

由于你的php脚本正在返回新图像的来源,你可能最好避免使用load()并使用一个简单的ajax调用来交换图像的源。

var img=$('#image');//cache the element

function refreshNotification(){
  $.ajax({
    url: 'http://mydomain.com/images/rotate.php',
    success: function(src){
      img.attr({src: src});
    }
  });
}

setInterval(refreshNotification, 10000);

答案 2 :(得分:1)

这样的事情可能有用,假设您的PHP脚本只返回图像的URL:

$(document).ready(function(){
    window.setInterval(switchImage, 10000);

    function switchImage() {
        var rn = Math.floor(Math.random() * 100000)
        $.get('http://mydomain.com/images/rotate.php', 
              { n: rn }, 
              receiveNewImage);
    }

    function receiveNewImage(src) {
        $('#image').fadeTo(1000, 0.0, function() { switchAndFadeIn(src); } );
    }
    function switchAndFadeIn(newSrc) {
        $('#image').attr('src', newSrc).fadeTo(1000, 1.0);
    }
});

编辑:添加了随机参数。

编辑:在你的PHP中,有这样的帮助吗?

header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Expires data in the past

答案 3 :(得分:1)

如何在swapImage()块之外定义$(document).ready()函数?

<script type="text/javascript" scr="path/to/jquery.js"></script>
<script type="text/javascript">
function swapImage(){
    var time = new Date();
    $('#rotate').fadeOut(1000)
     .attr('src', 'rotate.php?'+time.getTime())
     .fadeIn(1000);
}
$(document).ready(function(){
  var imageInterval = setInterval('swapImage()',5000);
});
</script>

<img src="rotate.php" id="rotate" />

答案 4 :(得分:0)

$("#image").each(function({
$(this).fadeOut(function() { 

$(this).attr("src", "http://mydomain.com/images/image.jpg"); 
$(this).load(function() { $(this).fadeIn(); }); // this should be on the bottom....
}); 
})

检查JQ Each

上的每个功能

我已经更新了脚本,我认为它应该可以正常工作,因为您正在等待加载图像,但它没有源... 看看这个&gt; <img onerror="alert('there was an error') />" 如果您收到错误,则表示该源不存在。顺便说一句,如果您计划使用多个图像,则不应使用#image,因为html上可能有一个唯一ID,否则会出现冲突

希望这会有所帮助

答案 5 :(得分:0)

您的设置缺少告诉jQuery不要缓存AJAX请求的步骤。可以将'cache' parameter添加到AJAX调用中以强制它获取新副本:

$.ajax({
  url: 'http://mydomain.com/images/rotate.php',
  cache: false,
  success: function(src){
    img.attr({src: src});
  }
});