html - How is this CSS scale effect achieved? -
html - How is this CSS scale effect achieved? -
at http://www.thoughtspot.com/#forrester there image of 3 pieces of paper "forrester" written on them. when mouse on them zoom in slightly, when move mouse off, scale down. i'm using chrome , see next property applied:
-webkit-transform: scale(1,1);
but seems indicate no scaling/the original size only. i'm @ loss how scaling happening. can explain 1 me?
showdev correct, :hover state has next transition:
body.front div#forrester:hover{
-webkit-transform:scale(1.02,1.02);
}
that seems obvious in hindsight.. may need caffeine.
html css css3 transform webkit-transform
Comments
Post a Comment