Jquery cycle plugin containerResize option

Posted by user1193385 on Stack Overflow See other posts from Stack Overflow or by user1193385
Published on 2012-05-01T22:10:22Z Indexed on 2012/07/11 3:16 UTC
Read the original article Hit count: 115

Filed under:
|
|

Im using jquery cycle on have a fade slideshow like so...

$('.pics').cycle({
    fx: 'fade',
    timeout:5000,
    random: 1,
    containerResize: false
});

it was working fine before but since I added containerResize: false my images wont show up anymore...does anyone know what its doing this?...example at http://willruppelglass.com/index.php

here is some other code, might help, never know....

.pics {  

    padding: 0;  
    margin:  0;
} 

.pics img {    
    background-color: #eee;  
    height: 200px; 
    text-align:center;
    top:  0; 
    left: 0;
}

.contentImages{
    border:1px solid #CCC; 
    padding:10px; 
    margin:20px auto 0; 
    position:relative;
    width: 600px;
    overflow:hidden;
}

<div class="contentImages">

<div class="pics">

<img src="upload/<?php echo $array['image'] ?>" height="200" />

<img src="upload/<?php echo $array['image2'] ?>" height="200" />

<img src="upload/<?php echo $array['image3'] ?>" height="200" />

</div>

</div>

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about slideshow