Hi nonemauro,
It seems that you're using the jquery-beforeafter-plugin to achieve that effect.
For this plugin to work correctly in webkit-based browsers, all images must have the width and height declared.
In your code, change the following lines from:
HTML Code:
<div id="bf_container1">
<div><img src="images/beforeAfter_image1.jpg" /></div>
<div><img src="images/beforeAfter_image2.jpg" /></div>
</div>
to:
HTML Code:
<div id="bf_container1">
<div><img src="images/beforeAfter_image1.jpg" width="632" height="409" /></div>
<div><img src="images/beforeAfter_image2.jpg" width="632" height="409" /></div>
</div>
and that should solve your problem.
Bookmarks