css3实现摩天轮特效

news/2024/11/7 21:02:32/

css3效果摩天轮

    • 效果图
    • html代码
    • css3代码
    • 完整代码

效果图

在这里插入图片描述

html代码

<div class="box"><div class="wheel"><ul><li></li><li></li><li></li><li></li><li></li><li></li><li></li><li></li></ul></div><div class="bracket"></div><div class="bracketsmall"></div><div class="bigtitle"></div><div class="title"></div><div class="arrow"></div></div>

css3代码

<style>*{margin:0px;padding: 0px;}body{background: url("images/2.jpg");background-size: cover;background-position: center center;}.box{/*border:solid 1px red;*/width: 1000px;height: 1000px;margin:0px auto;position: relative;}.wheel{background: url("images/fsw.png");height:768px;width: 768px;margin: 0px auto;-webkit-animation:wheelrotation 10s linear infinite;position: relative;}.bracket{width: 358px;height: 529px;background: url("images/bracket.png");position: absolute;left:318px;top:375px;}.bracketsmall{width: 247px;height: 505px;background: url("images/bracketsmall.png");position: absolute;left:375px;top:382px;z-index:-2;}.bigtitle{width: 577px;height: 257px;position: absolute;left: 212px;top: 269px;background-image: url("images/big-title.png");}.title{width: 413px;height: 139px;position: absolute;left: 306px;top: 464px;background-image: url("images/title.png");}.arrow{width: 48px;height: 64px;position: absolute;left: 482px;top: 550px;background-image: url("images/arrow.png");}ul{list-style: none;}li{height:170px;width: 130px;position: absolute;-webkit-animation:childrotation 10s linear infinite;-webkit-transform-origin:50% 0;}li:nth-child(1){background: url("images/boy.png");left: 330px;top:0px;}li:nth-child(2){background: url("images/dog.png");left: 594px;top:125px;}li:nth-child(3){background: url("images/girl.png");left: 694px;top:370px;}li:nth-child(4){background: url("images/girls.png");left: 594px;top:650px;}li:nth-child(5){background: url("images/hairboy.png");left: 330px;top:740px;}li:nth-child(6){background: url("images/mimi.png");left: 94px;top:640px;}li:nth-child(7){background: url("images/mudog.png");left: -6px;top:370px;}li:nth-child(8){background: url("images/shamegirl.png");left: 94px;top:125px;}@-webkit-keyframes wheelrotation{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);}}@-webkit-keyframes childrotation{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(-360deg);}}</style>

完整代码

<html>
<head><title>旋转摩天轮</title><meta charset="utf-8"/><style>*{margin:0px;padding: 0px;}body{background: url("images/2.jpg");background-size: cover;background-position: center center;}.box{/*border:solid 1px red;*/width: 1000px;height: 1000px;margin:0px auto;position: relative;}.wheel{background: url("images/fsw.png");height:768px;width: 768px;margin: 0px auto;-webkit-animation:wheelrotation 10s linear infinite;position: relative;}.bracket{width: 358px;height: 529px;background: url("images/bracket.png");position: absolute;left:318px;top:375px;}.bracketsmall{width: 247px;height: 505px;background: url("images/bracketsmall.png");position: absolute;left:375px;top:382px;z-index:-2;}.bigtitle{width: 577px;height: 257px;position: absolute;left: 212px;top: 269px;background-image: url("images/big-title.png");}.title{width: 413px;height: 139px;position: absolute;left: 306px;top: 464px;background-image: url("images/title.png");}.arrow{width: 48px;height: 64px;position: absolute;left: 482px;top: 550px;background-image: url("images/arrow.png");}ul{list-style: none;}li{height:170px;width: 130px;position: absolute;-webkit-animation:childrotation 10s linear infinite;-webkit-transform-origin:50% 0;}li:nth-child(1){background: url("images/boy.png");left: 330px;top:0px;}li:nth-child(2){background: url("images/dog.png");left: 594px;top:125px;}li:nth-child(3){background: url("images/girl.png");left: 694px;top:370px;}li:nth-child(4){background: url("images/girls.png");left: 594px;top:650px;}li:nth-child(5){background: url("images/hairboy.png");left: 330px;top:740px;}li:nth-child(6){background: url("images/mimi.png");left: 94px;top:640px;}li:nth-child(7){background: url("images/mudog.png");left: -6px;top:370px;}li:nth-child(8){background: url("images/shamegirl.png");left: 94px;top:125px;}@-webkit-keyframes wheelrotation{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);}}@-webkit-keyframes childrotation{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(-360deg);}}</style>
</head>
<body><div class="box"><div class="wheel"><ul><li></li><li></li><li></li><li></li><li></li><li></li><li></li><li></li></ul></div><div class="bracket"></div><div class="bracketsmall"></div><div class="bigtitle"></div><div class="title"></div><div class="arrow"></div></div>
</body>
</html>

http://www.ppmy.cn/news/911174.html

相关文章

LC-1599. 经营摩天轮的最大利润(贪心)

1599. 经营摩天轮的最大利润 难度中等39 你正在经营一座摩天轮&#xff0c;该摩天轮共有 4 个座舱 &#xff0c;每个座舱 最多可以容纳 4 位游客 。你可以 逆时针 轮转座舱&#xff0c;但每次轮转都需要支付一定的运行成本 runningCost 。摩天轮每次轮转都恰好转动 1 / 4 周。…

LeetCode 1599. 经营摩天轮的最大利润

【LetMeFly】1599.经营摩天轮的最大利润 力扣题目链接&#xff1a;https://leetcode.cn/problems/maximum-profit-of-operating-a-centennial-wheel/ 你正在经营一座摩天轮&#xff0c;该摩天轮共有 4 个座舱 &#xff0c;每个座舱 最多可以容纳 4 位游客 。你可以 逆时针 轮…

前端HTMl摩天轮展示

前端HTMl摩天轮展示 效果图演示&#xff1a; 主要函数&#xff1a; transform函数&#xff1a; -360度是指逆时针旋转360度 transform: rotate(-360deg);绝对定位&#xff1a; 绝对定位是找到自己的拥有定位的父级节点位置&#xff0c;父级没有就继续向上&#xff0c;最后都…

巴黎没有摩天轮

巴黎没有摩天轮(穷忙时代最触动内心的超人气畅销书&#xff0c;在职场中面对自己&#xff0c;在「摩天轮」里贴近爱情) 内容简介 有一种人生&#xff0c;叫做“摩天轮”&#xff1a;你始终站在观光舱里透过玻璃看风景&#xff0c;即使转到最高点&#xff0c;即使无限接近&#…

【八月】摩天轮的眼泪

The only person in the world who can safely depend on for life is the one in the mirror, the one who has experienced setbacks but is still strong 这世上唯一能够放心依赖终生的那个人 就是镜子里的那个你 那个历经挫折却依旧坚强的你 ​ ​​​​ Read well durin…

摩天轮的咒语

那天&#xff0c;我從遊樂場旁走過&#xff0c;&#xff0c;眼前の摩天輪&#xff0c;铱舊那庅の充滿瞳話。。。。乜媞那嗰紫铯車廂恠蕞ф間の埘刻&#xff0c;&#xff0c;&#xff0c;莪們苁亽海徔ф碰靣ㄋ 但&#xff0c;1秒鍾诟&#xff0c;還媞陌玍の濄蕗亽。。 莪恠遊樂場…

摩天大楼记录

文章目录 一、摩天大楼诅咒二、摩天大楼记录1、纽约市的公平人寿保险大楼 - 40米2、芝加哥的家庭保险大楼 - 42米3、芝加哥会堂大厦 - 68米4、曼哈顿人寿保险大楼 - 106米5、辛格大楼 - 187米6、大都会人寿保险大楼 - 213米7、华尔街40号大厦 - 283米8、克莱斯勒大厦 - 319米9、…

【1599. 经营摩天轮的最大利润】

来源&#xff1a;力扣&#xff08;LeetCode&#xff09; 描述&#xff1a; 你正在经营一座摩天轮&#xff0c;该摩天轮共有 4 个座舱 &#xff0c;每个座舱 最多可以容纳 4 位游客 。你可以 逆时针 轮转座舱&#xff0c;但每次轮转都需要支付一定的运行成本 runningCost 。摩…