css实现3d输入框效果
代码语言:html
所属分类:三维
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-image: radial-gradient(circle, #fff 30%, #ccc);
overflow: hidden;
font-family: sans-serif;
}
.textbox {
width: 500px;
height: 110px;
position: relative;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-animation: turnaround 20s infinite;
animation: turnaround 20s infinite;
}
.textbox-box {
background-color: #e3f6f5;
display: flex;
align-items: center;
justify-content: center;
box-shadow: inset 0 0 0 3px #272343;
position: relative;
-webkit-animation: hover 2s alternate infinite;
animation: hover 2s alternate infinite;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
transition: all 0.2s ease;
}
.textbox-field {
display: flex;
flex-direction: column;
padding: 10px 15px 15px;
align-self: stretch;
border-radius: 5px;
}
.textbox-l.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0