给你一个类似的吧,我学CSS3时候的小练习,画云的
效果图:
代码:
* {margin: 0
padding: 0
}
body {
background: #ccc
}
#cloud {
width: 330px
height: 120px
background: #f2f9fe
background: -webkit-linear-gradient(top, #f2f9f3 5%, #d6f0fd 100%)
background: -moz-linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%)
background: -ms-linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%)
background: -o-linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%)
background: linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%)
border-radius: 100px
position: relative
margin: 120px auto 20px
}
#cloud:after, #cloud:before {
content: ""
position: absolute
background: #f2f9fe
z-index: -1
}
#cloud:after {
width: 100px
height: 100px
top: -50px
left: 50px
border-radius: 100px
}
#cloud:before {
width: 180px
height: 180px
top: -90px
right: 50px
border-radius: 200px
}
.shadow {
width: 350px
position: absolute
bottom: -10px
background: #000
z-index: -1
box-shadow: 0 0 25px 8px rgba(0, 0, 0, 0.4)
border-radius: 50%
-webkit-border-radius: 50%
} <div id="cloud"><span class='shadow'></span></div>
用PPT做一个图片从上方掉下,然后在落地点冒出一团云朵效果的步骤:
1、点插入菜单——形状——云形,在编辑区绘制一个云朵;
2、将云朵放在图片下方适合的位置上;
3、选择图片,点动画菜单——自定义动画;
4、点添加效果——动作路径——向下;
5、选中图片,点添加效果——退出——消失;
6、选中云朵,点添加效果——进入——出现;
7、选中动画列表项目中第一个项目,即对应的图片进入动画项目,开始:选择之前;
选中动画列表项目中第二个项目,即对应的图片退出动画项目,开始:选择之后;
选中动画列表项目中第三个项目,即对应云朵动画项目,开始:选择之后。