gpt4 book ai didi

html - 亚马逊翻书 CSS 动画 : how is it coded?

转载 作者:太空宇宙 更新时间:2023-11-03 23:20:56 24 4
gpt4 key购买 nike

Link to example. Hover over the book on the left side

如您所见,这本书似乎是面向用户打开的。我已经有了动画的第一部分:JSFiddle

HTML:

<h1>Boek opendoen animatie</h1>

<div class="achtergrond">
<img class="foto" src="http://i.imgur.com/u19t6iW.jpg" alt="Cover">
</div>

</body>
</html>

CSS:

div.achtergrond {
background-color: black;
width: 250px;
height: 376px;

}
img.foto {
width: 250px;
height: auto;

-webkit-transition: -webkit-transform 1s; /* For Safari 3.1 to 6.0 */
/* -webkit-transform-origin: 0 0;*/
}

img.foto:hover {
/* -webkit-transform: scaleX(1.5)*/
-webkit-transform: matrix3d(0.8660254, 0, 0.5, 0, 0, 1, 0, 0, -0.5, 0, 0.8660254, 0, 0, 0, 0, 1);
}

现在这似乎并没有放大书的右 Angular ,所以封面看起来不像是面向用户的。

我试过-webkit-perspective, transform-style,...但似乎无法获得预期的效果。

最佳答案

在图像悬停上试试这个 css

transform: rotateY(-20deg); 
-moz-transform: rotateY(-20deg);
-webkit-transform: rotateY(-20deg);

关于html - 亚马逊翻书 CSS 动画 : how is it coded?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28719597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com