分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 技术分享

CSS3实现3D旋转相册

发布时间:2023-09-06 01:11责任编辑:郭大石关键词:CSS

静态效果图:

代码如下:

<!doctype html>
<html lang="en">
<head>
???<meta charset="UTF-8">
???<title>Document</title>
???<style>
???????*{margin: 0;padding: 0;}
???????ul{
???????????width: 200px;
???????????height: 200px;
???????????list-style: none;
???????????margin: 100px auto;
???????????position: relative;
???????????transform-style: preserve-3d;
???????????animation:xuanzhuan 6s linear infinite;
???????}
???????ul li{
???????????width: 200px;
???????????line-height: 200px;
???????????text-align: center;
???????????position: absolute;
???????????left: 0;
???????????top: 0;
???????}
???????ul li:nth-child(1){
???????????background-color: red;
???????????transform:rotateY(60deg) translateZ(200px);
???????}
???????ul li:nth-child(2){
???????????background-color: orange;
???????????transform:rotateY(120deg) translateZ(200px);
???????}
???????ul li:nth-child(3){
???????????background-color: yellow;
???????????transform:rotateY(180deg) translateZ(200px);
???????}
???????ul li:nth-child(4){
???????????background-color: green;
???????????transform:rotateY(240deg) translateZ(200px);
???????}
???????ul li:nth-child(5){
???????????background-color: tomato;
???????????transform:rotateY(300deg) translateZ(200px);
???????}
???????ul li:nth-child(6){
???????????background-color: blue;
???????????transform:rotateY(360deg) translateZ(200px);
???????}
???????ul:hover{
???????????animation-play-state:paused;
???????}
???????@keyframes xuanzhuan{
???????????from{
???????????????transform:rotateX(-10deg) rotateY(0deg);
???????????}
???????????to{transform:rotateX(-10deg) rotateY(360deg);
???????}
???</style>
</head>
<body>
???<ul>
???????<li>1</li>
???????<li>2</li>
???????<li>3</li>
???????<li>4</li>
???????<li>5</li>
???????<li>6</li>
???</ul>
</body>
</html>

CSS3实现3D旋转相册

原文地址:http://www.cnblogs.com/lushj/p/7526177.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved