Jquery cycle plugin image resizing issue opera
Posted
by Sam Gregory
on Stack Overflow
See other posts from Stack Overflow
or by Sam Gregory
Published on 2010-03-18T17:09:04Z
Indexed on
2010/03/18
17:11 UTC
Read the original article
Hit count: 781
I am using the cycle plugin within Joomla and it works fine on IE6,FF,SAFARI,CHROME however when you view it in OPERA breaking happens.
It loads fine but when it brings in the next slide and every consequent slide after that it re-sizes them to what i can only assume to be the browswe window's width and height.
here's my javascript
<script type="text/javascript">
$('.fullScreen').cycle({
speed: 1000,
timeout: 100
});
</script>
css
<script type="text/css">
.fullScreen {
margin-left: 0px;
height: 355px;
clear: both;
width: 475px;
z-index: -1;
overflow: hidden;
}
</script>
and finally HTML
<div class="fullscreen">
<img width="475px" src="images/someimage1.jpg" />
<img width="475px" src="images/someimage2.jpg" />
<img width="475px" src="images/someimage3.jpg" />
</div>
hope I'm not the only one having this problem.
© Stack Overflow or respective owner