css3.0 图形构成实例练习二
网站建设 2023-01-28 20:49www.1681989.com免费网站
主要知识点
① transform属性
ratate(旋转度数)
scale(等比例缩放)
skew(x , y);让元素倾斜显示,包含两个参数值,分别表示X轴和Y轴倾斜的角度,如果第二个参数为空,则默认为0,参数为负表示向相反方向倾斜。
②animate 适用于鼠标经过产生宽度,高度,left,等等 示例 transition:1s ease all;所有事件产生动画!
div {
-webkit-animation-name: pulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: fite;
-webkit-animation-timg-function: ease--out;
-webkit-animation-direction: alternate;
}@-webkit-keyframes pulse {
from {
opacity: 0.0;
font-size: 100%;
}
to {
opacity: 1.0;
font-size: 200%;
}
}style
{ marg: 0; paddg: 0;}
body {
overflow: hidden;
}
#clouds{
background:-webkit-lear-gradient(,#c9dbe9 0%,#fff 100%);/等价于background:-webkit-gradient(lear,left ,left bottom,from(c9dbe9),to(#fff))/
background:-moz-lear-gradient(,#c9dbe9 0%,#fff 100%);
background:-o-lear-gradient(,#c9dbe9 0%,#fff 100%);
paddg:100px 0px;
}
.cloud{
width:200px;
height:60px;
background:#FFF;
border-radius:200px;
-webkit-border-radius:200px;
-moz-border-radius:200px;
-o-border-radius:200px;
position:relative;}
.cloud:after,.cloud:before{
content:'';
position:absolute;
background:#FFF;
width:100px;
height:80px;
:-15px;
left:10px;
border-radius:100px;
-webkit-border-radius:100px;
-moz-border-radius:100px;
-o-border-radius:100px;}
.cloud:after{
width:120px;
height:120px;
:-55px;
left:auto;
right:15px;}
.x1{
-webkit-animation:moveclouds 25s lear fite;
-moz-animation:moveclouds 25s lear fite;
-o-animation:moveclouds 25s lear fite;}
.x2{
left:200px;
transform:scale(0.6);
-webkit-transform:scale(0.6);
-moz-transform:scale(0.6);
-o-transform:scale(0.6);
opacity:0.6;
animation:moveclouds 25s lear fite;
-webkit-animation:moveclouds 25s lear fite;
-moz-animation:moveclouds 25s lear fite;
-o-animation:moveclouds 25s lear fite;}
.x3{
:-200px;
left:-250px;
transform:scale(0.6);
-webkit-transform:scale(0.6);
-moz-transform:scale(0.6);
-o-transform:scale(0.6);
opacity:0.6;
animation:moveclouds 25s lear fite;
-webkit-animation:moveclouds 25s lear fite;
-moz-animation:moveclouds 25s lear fite;
-o-animation:moveclouds 25s lear fite;}
.x4{
:200px;
left:470px;
transform:scale(0.6);
-webkit-transform:scale(0.6);
-moz-transform:scale(0.6);
-o-transform:scale(0.6);
opacity:0.6;
animation:moveclouds 25s lear fite;
-webkit-animation:moveclouds 25s lear fite;
-moz-animation:moveclouds 25s lear fite;
-o-animation:moveclouds 25s lear fite;}
.x5{
left:470px;
:-250px;
transform:scale(0.8);
-webkit-transform:scale(0.8);
-moz-transform:scale(0.8);
-o-transform:scale(0.8);
opacity:0.8;
animation:moveclouds 25s lear fite;
-webkit-animation:moveclouds 18s lear fite;
-moz-animation:moveclouds 18s lear fite;
-o-animation:moveclouds 18s lear fite;}
@-webkit-keyframes moveclouds{
0%{marg-left:1000px;}
100%{marg-left:-1000px;}
}
@-moz-keyframes moveclouds{
0%{marg-left:1000px;}
100%{marg-left:-1000px;}
}
@-o-keyframes moveclouds{
0%{marg-left:1000px;}
100%{marg-left:-1000px;}
}
html
<div id="clouds">
<div class="cloud x1"></div>
<div class="cloud x2"></div>
<div class="cloud x3"></div>
<div class="cloud x4"></div>
<div class="cloud x5"></div>
</div>
① transform属性
ratate(旋转度数)
scale(等比例缩放)
skew(x , y);让元素倾斜显示,包含两个参数值,分别表示X轴和Y轴倾斜的角度,如果第二个参数为空,则默认为0,参数为负表示向相反方向倾斜。
②animate 适用于鼠标经过产生宽度,高度,left,等等 示例 transition:1s ease all;所有事件产生动画!
复制代码
代码如下:div {
-webkit-animation-name: pulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: fite;
-webkit-animation-timg-function: ease--out;
-webkit-animation-direction: alternate;
}@-webkit-keyframes pulse {
from {
opacity: 0.0;
font-size: 100%;
}
to {
opacity: 1.0;
font-size: 200%;
}
}style
{ marg: 0; paddg: 0;}
body {
overflow: hidden;
}
#clouds{
background:-webkit-lear-gradient(,#c9dbe9 0%,#fff 100%);/等价于background:-webkit-gradient(lear,left ,left bottom,from(c9dbe9),to(#fff))/
background:-moz-lear-gradient(,#c9dbe9 0%,#fff 100%);
background:-o-lear-gradient(,#c9dbe9 0%,#fff 100%);
paddg:100px 0px;
}
.cloud{
width:200px;
height:60px;
background:#FFF;
border-radius:200px;
-webkit-border-radius:200px;
-moz-border-radius:200px;
-o-border-radius:200px;
position:relative;}
.cloud:after,.cloud:before{
content:'';
position:absolute;
background:#FFF;
width:100px;
height:80px;
:-15px;
left:10px;
border-radius:100px;
-webkit-border-radius:100px;
-moz-border-radius:100px;
-o-border-radius:100px;}
.cloud:after{
width:120px;
height:120px;
:-55px;
left:auto;
right:15px;}
.x1{
-webkit-animation:moveclouds 25s lear fite;
-moz-animation:moveclouds 25s lear fite;
-o-animation:moveclouds 25s lear fite;}
.x2{
left:200px;
transform:scale(0.6);
-webkit-transform:scale(0.6);
-moz-transform:scale(0.6);
-o-transform:scale(0.6);
opacity:0.6;
animation:moveclouds 25s lear fite;
-webkit-animation:moveclouds 25s lear fite;
-moz-animation:moveclouds 25s lear fite;
-o-animation:moveclouds 25s lear fite;}
.x3{
:-200px;
left:-250px;
transform:scale(0.6);
-webkit-transform:scale(0.6);
-moz-transform:scale(0.6);
-o-transform:scale(0.6);
opacity:0.6;
animation:moveclouds 25s lear fite;
-webkit-animation:moveclouds 25s lear fite;
-moz-animation:moveclouds 25s lear fite;
-o-animation:moveclouds 25s lear fite;}
.x4{
:200px;
left:470px;
transform:scale(0.6);
-webkit-transform:scale(0.6);
-moz-transform:scale(0.6);
-o-transform:scale(0.6);
opacity:0.6;
animation:moveclouds 25s lear fite;
-webkit-animation:moveclouds 25s lear fite;
-moz-animation:moveclouds 25s lear fite;
-o-animation:moveclouds 25s lear fite;}
.x5{
left:470px;
:-250px;
transform:scale(0.8);
-webkit-transform:scale(0.8);
-moz-transform:scale(0.8);
-o-transform:scale(0.8);
opacity:0.8;
animation:moveclouds 25s lear fite;
-webkit-animation:moveclouds 18s lear fite;
-moz-animation:moveclouds 18s lear fite;
-o-animation:moveclouds 18s lear fite;}
@-webkit-keyframes moveclouds{
0%{marg-left:1000px;}
100%{marg-left:-1000px;}
}
@-moz-keyframes moveclouds{
0%{marg-left:1000px;}
100%{marg-left:-1000px;}
}
@-o-keyframes moveclouds{
0%{marg-left:1000px;}
100%{marg-left:-1000px;}
}
html
<div id="clouds">
<div class="cloud x1"></div>
<div class="cloud x2"></div>
<div class="cloud x3"></div>
<div class="cloud x4"></div>
<div class="cloud x5"></div>
</div>
网站设计
- 静宁会SEO的网站建设公司:全面提升您的网络影
- 提升在线业务的关键:选择最佳的丽水网站建设
- 浙江网站优化发展潜力如何
- 井研专业的网站建设公司:打造您的在线品牌
- 灵山SEO网站建设公司:提升您的在线业务表现
- 蒙城网站建设优化公司:提升您网站表现的理想
- 阳谷企业网站优化:提升线上业务力的关键
- 樟树专业的网站建设公司:打造您在线业务的坚
- 通河百度SEO排名的策略与技巧
- 重庆百度快照排名如何进行精准的客户引流
- 重庆百度快照排名
- 常宁便宜的建站公司:助您轻松打造在线业务
- 巫溪百度网站优化:提升网站曝光率与流量的关
- 湖北整站优化怎么做才能放大客户需求
- 闸北网站建设多少钱?全面解析与预算规划
- 辽宁企业网站优化怎么做电话营销