CSS: double coin
2022/2/7 23:52:30
本文主要是介绍CSS: double coin,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .box{ position: relative; width: 300px; height: 300px; margin: 100px auto; font-size: 40px; line-height: 300px; text-align: center; color: #fff; transition: all 1s; transform-style: preserve-3d; } .box:hover{ transform: rotateY(180deg); } .front,.back{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; } .front{ background-color: palegoldenrod; z-index: 1; } .back{ background-color: peru; transform: rotateY(180deg); } </style> </head> <body> <div class="box"> <div class="front">front</div> <div class="back">back</div> </div> </body> </html>
这篇关于CSS: double coin的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-26CSS入门指南:从零开始学CSS
- 2024-12-26CSS基础入门教程
- 2024-12-25CSS基础知识入门教程
- 2024-12-25CSS考点入门教程:掌握基础知识点
- 2024-12-25CSS考点解析:初学者必会的基础教程
- 2024-12-07uniapp动态设置不同的css有哪些方法?-icode9专业技术文章分享
- 2024-12-07UniApp 中,怎么通过 CSS 设置 view 组件的水平居中效果?-icode9专业技术文章分享
- 2024-12-06TailwindCSS开发入门教程
- 2024-12-06TailwindCSS项目实战:从入门到上手
- 2024-12-06TailwindCss项目实战:初学者指南