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

Popular posts from this blog

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

Is there a way to convert an HTML page styled with Bootstrap CSS into email-compatible html? -