請問jquery是否可以做到p區塊翻轉的效果?就是像翻開一張牌一樣是否有範本可以提供呢
业精于勤,荒于嬉;行成于思,毁于随。
transform:scale(x,y); just give negative values to x and y
css3 3d may be able to help you, you can check it out.
Just control the CSS transformEnglishChineseMDN
If it’s like a flop, I’ve seen Changyou’s page before which has a similar effecthttp://www.changyou.com/index...
The roughly used attributes are: backface-visibility: hidden; transform:rotateY() transition
backface-visibility: hidden;
transform:rotateY()
transition
Roughly two p’s, one for the front and one for the back, use transform to flip it
You can study it.
A long time ago, I made a little game based on it. If you don’t mind, you can also refer to it: http://shellphon.wang/funs/ma...
transform:scale(x,y); just give negative values to x and y
css3 3d may be able to help you, you can check it out.
Just control the CSS transform
English
Chinese
MDN
If it’s like a flop, I’ve seen Changyou’s page before which has a similar effect
http://www.changyou.com/index...
The roughly used attributes are:
backface-visibility: hidden;
transform:rotateY()
transition
Roughly two p’s, one for the front and one for the back, use transform to flip it
You can study it.
A long time ago, I made a little game based on it. If you don’t mind, you can also refer to it: http://shellphon.wang/funs/ma...