chodzi o te 3 boxy na pochylonym tle - po najechaniu robi się animacja tła (podmienia z matrixem) - jak to zrobić? bo ja coś namieszałem - u mnie jest tak:
<style> #cell1 { transform: matrix(1, 0, 0, 1, 0, 0); visibility: hidden; width: 240px; height: 250px; overflow: hidden; background-position: center; } #cell1:hover { transform: matrix(0.95, 0, 0, 0.95, 0, 0); visibility: inherit; opacity: 1.0; width: 240px; height: 250px; overflow: hidden; background-position: center; -webkit-transform: matrix, 1000ms ease 0ms; -moz-transform: matrix, 1000ms ease 0ms; -ms-transform: matrix, 1000ms ease 0ms; transform: matrix, 1000ms ease 0ms; } </style>
a później w komórce:
<div id='cell1' style='width:240px;height:250px;overflow:hidden;'> <img src='./images/kredyty.jpg" class='out' style='width:260px;height:270px;transform:matrix(1, 0, 0, 1, 0, 0);opacity:1;'> <img src='./images/kredyty-hover.jpg" class='hover' style='width:260px;height:270px;transform:matrix(1, 0, 0, 1, 0, 0);visibility:hidden;opacity:0;'> </div>
@edit
generalnie chodzi mi o taką ładną, płynną animację, żeby podmieniły się dwa obrazki, pomniejszyły / powiększyły w cell'u tak jak tam i pojawił jakiś tekst...