I have a gallery of product images in an e-commerce site which the client wants to "pop-out" on rollover.
I wrote this CSS style to do it however while it works fine in Firefox .. not so in IE10.
Can anyone suggest a work-around with this code that will support cross browser?
Any help would be much appreciated.
<style type="text/css">
#btnProduct{
-webkit-opacity: 0.5;
-moz-opacity: 0.5;
}
#btnProduct:hover{
-webkit-transform: scale(1.06,1.06);
-moz-transform:scale(1.06,1.06);
}
</style>
And on each image:
<a href="#"><img src="images/SC-Brand-buttons_30.png" width="200" height="193" border="0" id="btnProduct" onMouseOver="mOver(this);" onMouseOut="mOut(this);"/></a>