2020-03-04

练习


<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

<style type="text/css">

.loader-inner{

width: 200px;

height: 200px;

background: pink;

margin: auto;

}

.loader-inner div{

width: 20px;

height:20px;

background: #fff;

border-radius: 50%;

float: left;

margin-right: 30px;

animation: play 0.75s linear infinite;

animation-fill-mode: both

}

.loader-inner div:nth-child(1){

animation-delay: 0.12;

}

.loader-inner div:nth-child(2){

animation-delay: 0.24s;

}

.loader-inner div:nth-child(3){

animation-delay: 0.36s;

}

@keyframes play{

0%{transform: scale(1);opacity: 1;}

50%{transform: scale(0.1);opacity: 0.7;}

100%{transform: scale(1);opacity: 1;}

}

</style>

</head>

<body>

<div class="loader-inner">

<div></div>

<div></div>

<div></div>

</div>

</body>

</html>


摩天轮


<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

<style type="text/css">

*{margin: 0;padding:0;}

html,body{

height: 100%;

}

body{

background: url(img/2.jpg) no-repeat;

background-size: cover;

position:relative;

}

.box,.content{

width:768px;

height:768px;

position: absolute;

top:0;

left:0;

left:0;

right:0;

margin:auto;

}

.img1{

position: absolute;

top:50%;

left:0;

right:0;

margin:auto;

}

.img2,.img3{

position: absolute;

top:0;bottom:0;

left:0;right:0;

margin:auto;

}

.content img{

position: absolute;

animation: xiaoren 15s linear  infinite;

}

.content img:nth-child(1){

top:0;

left:0;

right:0;

margin:auto;

}

.content img:nth-child(2){

bottom:0;

left:0;

right:0;

margin:auto;

}

.content img:nth-child(3){

bottom:0;

left:0;

top:0;

margin:auto;

}

.content img:nth-child(4){

bottom:0;

right:0;

top:0;

margin:auto;

}

.content img:nth-child(5){

top:70px;

left:70px;

}

.content img:nth-child(6){

top:70px;

right:70px;

}

.content img:nth-child(7){

bottom:70px;

right:70px;

}

.content img:nth-child(8){

bottom:70px;

left:70px;

}

.img2{

animation: lunzi 15s linear infinite;

}

.content{

animation: lunzi 15s linear infinite;

}

@keyframes lunzi{

0%{ transform: rotate(0deg);}

100%{ transform: rotate(360deg);}

}

@keyframes xiaoren{

0%{ transform: rotate(0deg);}

100%{ transform: rotate(-360deg);}

}

</style>

</head>

<body>

<div class="box">

<img class="img1" src="img/bracket.png" alt="" />

<img class="img2" src="img/fsw.png" alt="" />

<img class="img3" src="img/big-title.png" alt="" />

<div class="content">

<img src="img/boy.png" alt="" />

<img src="img/dog.png" alt="" />

<img src="img/girl.png" alt="" />

<img src="img/girls.png" alt="" />

<img src="img/hairboy.png" alt="" />

<img src="img/mudog.png" alt="" />

<img src="img/shamegirl.png" alt="" />

<img src="img/mimi.png" alt="" />

</div>

</div>

</body>

</html>


会跳的小女孩


<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

<style type="text/css">

body{

height: 100%;

width: 100%;

}

.box{

width: 180px;

height: 300px;

background:url(img/charector.png) no-repeat;

animation: play 1.5s step-start infinite;

}

@keyframes play{

0%{background-position:0 0;}

16.67%{background-position:-180px 0;}

33%{background-position:-360px 0;}

50%{background-position:-540px 0;}

66.67%{background-position:-720px 0;}

84%{background-position:-900px 0;}

100%{background-position:-1080px 0;}

}

</style>

</head>

<body>

<div class="box">

</div>

</body>

</html>


刷新圈


<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title> 刷新</title>

<style type="text/css">

*{margin: 0;padding:0;}

.box{

width: 100px;

height:100px;

position: relative;

margin: 50px auto;

}

.box div{

width: 100px;

height:100px;

position: absolute;

top: 0;

left:0;

}

.box span{

display: block;

width: 10px;

height:10px;

background: #000;

border-radius: 50%;

position: absolute;

animation: play 1s linear infinite;

}

.content1 span:nth-child(1){

top:0;

left: 0;

animation-delay: 0;

}

.content1 span:nth-child(2){

top:0;

right: 0;

animation-delay: 0.2s;

}

.content1 span:nth-child(3){

bottom:0;

right: 0;

animation-delay: 0.4s;

}

.content1 span:nth-child(4){

bottom:0;

left: 0;

animation-delay: 0.6s;

}

.content2{

transform: rotate(45deg);

}

.content2 span:nth-child(1){

top:0;

left: 0;

animation-delay: 0.1s;

}

.content2 span:nth-child(2){

top:0;

right: 0;

animation-delay: 0.3s;

}

.content2 span:nth-child(3){

bottom:0;

right: 0;

animation-delay: 0.5s;

}

.content2 span:nth-child(4){

bottom:0;

left: 0;

animation-delay: 0.7s;

}

@keyframes play{

0%{transform: scale(1);opacity: 1;}

50%{transform: scale(0);opacity: 0;}

100%{transform: scale(1);opacity: 1;}

}

</style>

</head>

<body>

<div class="box">

<div class="content1">

<span></span>

<span></span>

<span></span>

<span></span>

</div>

<div class="content2">

<span></span>

<span></span>

<span></span>

<span></span>

</div>

</div>

</body>

</html>

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,454评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,553评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,921评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,648评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,770评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,950评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,090评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,817评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,275评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,592评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,724评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,409评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,052评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,815评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,043评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,503评论 2 361
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,627评论 2 350

推荐阅读更多精彩内容

  • 各种纯css图标 CSS3可以实现很多漂亮的图形,我收集了32种图形,在下面列出。直接用CSS3画出这些图形,要比...
    剑残阅读 9,513评论 0 8
  • 一、CSS入门 1、css选择器 选择器的作用是“用于确定(选定)要进行样式设定的标签(元素)”。 有若干种形式的...
    宠辱不惊丶岁月静好阅读 1,589评论 0 6
  • 1、属性选择器:id选择器 # 通过id 来选择类名选择器 . 通过类名来选择属性选择器 ...
    Yuann阅读 1,621评论 0 7
  • 附上7月4日晚8点的直播地址:https://www.mayigeek.com/mayi-edu-web/user...
    Iris_mao阅读 844评论 4 7
  • 选择qi:是表达式 标签选择器 类选择器 属性选择器 继承属性: color,font,text-align,li...
    love2013阅读 2,306评论 0 11