用HTML与CSS写海贼王旋转木马图

news/2024/11/7 12:35:37/

1.效果图

海贼王木马

2.实现原理

2.1 首先利用transform中的rotateY和translateZ属性移动图片,使图片围成一圈;(最中间的图片不需要设置任何属性,可以作为其他图片的位置参考)
2.2 利用animation动画使全部图片开始旋转;

3.HTML代码

<body><section><div><img src="images/02-h1.png" alt=""></div><div><img src="images/02-h2.png" alt=""></div><div><img src="images/02-h3.png" alt=""></div><div><img src="images/02-h4.png" alt=""></div><div><img src="images/02-h5.png" alt=""></div><div><img src="images/02-h6.png" alt=""></div><div><img src="images/02-h7.png" alt=""></div></section>
</body>

4.CSS代码

/* 初始化 */
* {padding: 0;margin: 0;box-sizing: border-box;
}
/* 定义动画 */
@keyframes rotate {0% {transform: rotateY(0);}100% {transform: rotateY(360deg);}
}body {/* 设置视点 */perspective: 800px;background-color: #01847f;
}section {position: relative;width: 300px;height: 200px;margin: 200px auto;transform: translateX(-50%);/* 调用动画 *//* 设为3d可视 */transform-style: preserve-3d;animation: rotate 15s linear infinite;
}section div {position: absolute;top: 0;right: 0;width: 100%;height: 100%;
}section img {width: 300px;height: 200px;
}section div:nth-child(1) {transform: rotateY(0) translateZ(300px);
}
section div:nth-child(2) {transform: rotateY(60deg) translateZ(300px);
}
section div:nth-child(3) {transform: rotateY(120deg) translateZ(300px);
}
section div:nth-child(4) {transform: rotateY(180deg) translateZ(300px);
}
section div:nth-child(5) {transform: rotateY(240deg) translateZ(300px);
}
section div:nth-child(6) {transform: rotateY(300deg) translateZ(300px);
}

5.动画介绍

1. 动画语法:

	@keyframes 动画名称 {0% {  //百分比要是整数,就是总的时间的划分;}100% {}}

2.常用动画基本属性

属性描述
@keyframes规定动画
animation-name规定了@keyframes动画的名称(必须)
animation-duration规定动画一个周期的时间,默认是0(必须)
animation-timing-function规定动画的速度曲线,默认是ease
animation-delay规定动画何时开始,默认是0
animation-iteration-count规定动画被播放的次数,默认是1,还有infinite
animation-direction规定动画是否在下一周期逆向播放,默认是normal,alternate
animation-play-state规定动画是否正在运行或暂停,默认是running,paused
animation-fill-mode规定动画结束后状态,保持forwards回到起始backwards

注:更多属性可到官网查询

3.简写:

animation: 动画名称 持续时间 运动曲线 何时开始 播放次数 是否反方向
动画起始或结束状态;(省略即默认值,前两个必写)


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

相关文章

漫画信息爬虫之爬取海贼王全彩漫画图片

制作工具模块 -隐藏身份信息的User-Agent模块&#xff1b;对象服务器识别不了身份信息。 import random user_agent_data [{"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3314.0 Safari/537.36…

python画海贼王_用python自动爬取海贼王漫画推送kindle

原标题&#xff1a;用python自动爬取海贼王漫画推送kindle 链接&#xff1a; 之前闲着无聊&#xff0c;想找个项目练练手&#xff0c;这时我看到正在压着泡面的kindle。 就你了&#xff0c;之前一直想在kindle上看漫画&#xff0c;可是想到又得下载资源还得发送到kindle&#x…

python海贼王logo_Python 学习笔记---爬取海贼王动漫

最近无聊整理的爬虫代码&#xff0c;可以自动爬取腾讯动漫的任意漫画&#xff0c;思路如下&#xff1a; 1. 先获取想下载的动漫url&#xff0c; 这里用了 getUrls &#xff0c;直接获取动漫的最后一章 2. 然后进入到该动漫去获取要下载的图片url 3. 下载到本地 import os impor…

python海贼王logo_Python入门之生成海贼王云图

本教程适合于有一定编程经验的同学&#xff0c;使用Python3&#xff0c;在Jupyter进行调试开发。 涉及的Python基础包括&#xff1a;变量和函数的定义和使用 列表和字典等数据结构的使用 条件和循环语句&#xff0c;if、for等 模块的导入和使用&#xff0c;import语法 需要安装…

python海贼王logo_Python 实现的下载op海贼王网的图片(网络爬虫)

没得事就爬一下我喜欢的海贼王上的图片 需要在d盘下建立一个imgcache文件夹 # -*- coding: utf-8 -*- import urllib import urllib2 import json from bs4 import BeautifulSoup import threadpool import thread class htmlpaser: def __init__(self): self.urlhttp://1.hzfa…

python海贼王logo_Python实现的下载op海贼王网的图片

没得事就爬一下我喜欢的海贼王上的图片 需要在d盘下建立一个imgcache文件夹 # -*- coding: utf-8 -*- import urllib import urllib2 import json from bs4 import BeautifulSoup import threadpool import thread class htmlpaser: def __init__(self): self.urlhttp://1.hzfa…

python海贼王logo_中年大叔学编程-Python下载海贼王漫画图片

page pq(url"http://www.hanhande.net/manga/94/", encodingutf-8) lias page("#chapter-list-4").find(li).find(a).items() for a in lias: print(a.attr[href]) print(a.text()) 初步效果有了&#xff0c;我们再继续看看详细的动漫页面 我们可以看到页…

html怎么写海贼王旗帜图片,海贼王精美旗帜套图

1/49 海贼王精美旗帜套图 http://img1.v.tmcdn.net/haizei/bizhi/big_pic/20120728-118359/7812089422c27325d40d9d1d6911a9cf1.jpg http://img1.v.tmcdn.net/haizei/bizhi/big_pic/20120728-118359/7812089422c27325d40d9d1d6911a9cf1.jpg 2/49 海贼王精美旗帜套图 http://img…