Created
February 18, 2012 01:37
-
-
Save abedsujan/1856781 to your computer and use it in GitHub Desktop.
Read All Images from a folder And display slide show.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script> | |
<script src="jquery.innerfade.js" type="text/javascript"></script> | |
<script> | |
$(document).ready(function() { | |
$('#image_rotate').innerfade({ | |
speed: 'slow', | |
timeout: 2000, | |
type: 'sequence', | |
containerheight: '220px' | |
}); | |
}); | |
</script> | |
<ul id="image_rotate" style="list-style: none;"> | |
<?= $image_rotation; ?> | |
</ul> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
// Global Variables | |
$image_dir = "$_SERVER[DOCUMENT_ROOT]/bdexchange/assets/slide"; // directory on server | |
$image_relative_path = 'assets/slide'; // path to images relative to script | |
$file_types = array('jpg', 'jpeg', 'gif', 'png'); | |
$image_time = '4000'; // seconds each image will display (4000 = 4 seconds) | |
$image_rotation =''; | |
if ($handle = opendir($image_dir)) { | |
while (false !== ($file = readdir($handle))) { | |
if ($file != "." && $file != "..") { | |
$ext_bits = explode(".", $file); // finds file extensions | |
foreach ($ext_bits as $key => $value) { | |
if (in_array($value, $file_types)) { | |
$image_rotation .= '<li><img src="' .base_url().$image_relative_path . '/' . $file . '"></li>'; | |
} | |
} | |
} | |
} | |
closedir($handle); | |
} | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://medienfreunde.com/lab/innerfade/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://medienfreunde.com/lab/innerfade/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment