gpt4 book ai didi

html - CSS 3D 变换看起来很平坦(正交?)

转载 作者:行者123 更新时间:2023-11-28 05:33:00 28 4
gpt4 key购买 nike

悬停时按钮会翻转但无法显示透视图。这就像动画的平面正交 View 。我使用的 perspective 属性有误吗?

@import 'https://necolas.github.io/normalize.css/latest/normalize.css';
/* //////////////////////////////// INITIAL //////////////////////////////// */
html, body{ height:100% } body{ background:#eee }
#btn {
display:block; width:100px; height:100px; margin:0 auto; position:relative;
transform:translateY(-50%); top:50%; background:#333; color:#eee; border:0;
outline:0; text-transform:uppercase
}
/* //////////////////////////////// _PERSP_ //////////////////////////////// */
#btn{ perspective:1000px }
#btn:hover { transform:rotateX(180deg); transform-style:preserve-3d }
/* //////////////////////////////// _TRANS_ //////////////////////////////// */
#btn{ transition-property: transform; transition-duration:1s }
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8"> <meta name="robots" content="noindex, nofollow">
<link rel="stylesheet" href="base.css"> <title>web | animation</title>
</head>
<body>
<button id="btn">button</button>
<!-- ------------------------------ COMMENT ------------------------------- -->
</body>
</html>

最佳答案

好的,首先您需要在浏览器中激活硬件加速。其次,您使用浏览器特定的前缀,如下所示:

-webkit-transform: perspective(600px) rotateY(-180deg);
-moz-transform: perspective(600px) rotateY(-180deg);

试试这样的结构:

<div id="parent">
<button id="button">button</button>
</div>

CSS:

#parent {
position: relative;
margin: 10px auto;
width: 450px;
height: 281px;
z-index: 1;
}
#button {
width: 100%;
height: 100%;
-moz-transform-style: preserve-3d;
-moz-transition: all 1.0s linear;
-webkit-transform-style: preserve-3d;
-webkit-transition: all 1.0s linear;
}
#parent:hover #button {
-webkit-transform: perspective(600px) rotateY(-180deg);
-moz-transform: perspective(600px) rotateY(-180deg);
}

关于html - CSS 3D 变换看起来很平坦(正交?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38402608/

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