| 123456789101112131415161718192021222324252627282930313233 |
- function preload_images(images) {
- for (var i = 0; i< images.length; i++) {
- $('<img />').attr('src',images[i]);
- console.log(images[i]);
- }
-
- console.log('finish...');
- }
- $(window).resize(function() {
- $('#slideshow').height($('#banner').height());
- });
- $(document).ready(function() {
- //$('#banner_overlay').show();
- });
- $(window).load(function() {
- var images = [];
-
- $('#banner > li').each(function() {
- images.push($(this).children('a').children('img').attr('src'));
- //console.log($(this).children('a').children('img').attr('src'));
- });
-
- //preload_images(images);
-
- $('#slideshow').height($('#banner').height());
- //$('#banner_overlay').hide();
- });
|