从自动旋转使用jquery循环图片幻灯片


Rotate images from auto rotate using jquery cycle for Photo Slideshow

我正在使用我找到的一些幻灯片代码。我让它运行起来,显示的照片很好。我播放幻灯片的电视是90度的。但这只是物理上的转变。它不是在操作系统中打开的。所以我需要把所有的图片旋转90度

我好像弄不懂翻转它的代码。我尝试过PHP,但我有限的知识使我无法正确使用它。

下面是我使用的代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Slideshow</title><!-- -->
<script src="scripts/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="scripts/jquery.cycle.lite.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
    $('#myslides').cycle({
        fit: 1, pause: 1, timeout: 4000
    });
});
</script>
<link rel="stylesheet" href="styles/dynamicslides.css" type="text/css" media="screen" />
</head>
<body>
<?php
$directory = 'images/slideshow';    
try {       
    // Styling for images   
    echo '<div id="myslides">'; 
    foreach ( new DirectoryIterator($directory) as $item ) {            
        if ($item->isFile()) {
            $path = $directory . '/' . $item;
            echo '<img src="' . $path . '"/>';  
        }
    }   
    echo '</div>';
}   
catch(Exception $e) {
    echo 'No images found for this slideshow.<br />';   
}
?>
</body>
</html>

有多种类型的"旋转",但我认为你想要的是一个简单的"显示90度的图像"

在这种情况下,我建议使用CSS而不是PHP。确保旋转不会截断你的任何图像。
#90Image
{
    /* Firefox */
    -moz-transform:rotate(90deg);
    /* Safari and Chrome */
    -webkit-transform:rotate(90deg);
    /* Opera */
    -o-transform:rotate(90deg);
    /* IE9 */
    -ms-transform:rotate(90deg);
}

并修改代码为:

echo '<img id="90Image" src="' . $path . '"/>';