实际效果
完成HTML先提前准备一个整洁的 html 网页页面,写好连接点:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="styleSheet" type="text/css" href="./style.css" /> </head> <body> <div> <section class="card"> <div class="card-top"> 此网页页面对您是不是有协助? </div> <div class="card-bottom"> <div title="👍"> YES </div> <div title="👎"> NO </div> </div> </section> </div> </body> </html>
CSS
平级文件目录创建一个 style.css
撰写大家的款式:
body { margin: 0; padding: 0; /* mobile 端转换横纵屏兼容 */ -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; /* 3D渲染提升 */ -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-size: 15px; } * { box-sizing: border-box; font-family: "Fira Code", Hack, Consolas; } :root { --color: #ff4081 } section { margin: 0; padding: 0; } .card { font-size: inherit; position: fixed; right: 0; bottom: 0; background-color: var(--color); border-radius: 4px 4px 0 0; box-shadow: 0 16px 60px 0 rgba(86, 91, 115, 0.2); opacity: 0.5; transform: translateX(-20px) translate(103px, 27px) rotate(35deg); transition: all 400Ms cubic-bezier(0.26, 0.6, 0.4, 1.54); } .card:hover { opacity: 1; transform: translate(0, 0) rotate(0deg) translateX(-20px); } .card-top { height: 50px; line-height: 50px; padding: 0 1rem; text-align: center; user-select: none; color: #fff; } .card-bottom { display: flex; background-color: #fff; justify-content: space-evenly; } .card-bottom div { padding: 1rem; cursor: pointer; font-weight: 700; text-transform: uppercase; text-decoration: none ; color: var(--color); transition: all .2s linear; } .card-bottom div:hover { text-shadow: 0 1px 1px var(--color); letter-spacing: 1px; }
2个动漫:
rotate(0deg)
-> rotate(35deg)
translate(0px, 0px)
-> translate(103px, 27px)
动漫全过程:transform: translateX(-20px) translate(103px, 27px) rotate(35deg);
留意这儿 translateX(-20px)
是动漫前后左右一致的,一共仅有2个特性更改。
小结
到此这篇有关css完成网页页面右下方关注小卡牌实际效果(案例编码)的文章内容就详细介绍到这了,大量有关css网页页面右下方关注小卡牌內容请检索脚本制作之家之前的文章内容或再次访问下边的有关文章内容,期待大伙儿之后多多的适用脚本制作之家!