博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
h5+css3最简单的图片飞入以及淡入淡出效果
阅读量:6254 次
发布时间:2019-06-22

本文共 2178 字,大约阅读时间需要 7 分钟。

正如很多小伙伴们所知道的,楼主最近在开发移动端的响应式布局的自适应页面了,现在分享一个刚写完的小demo

html:

移动端

css:

@charset "utf-8";/* CSS Document */body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,input,table,tbody,p,th,td{
-webkit-text-size-adjust:none; margin: 0; padding: 0; border: none; -webkit-tap-highlight-color:rgba(0,0,0,0); font-size: 1em; font-family:"Microsoft Yahei","微软雅黑",Tahoma,Arial,Helvetica ,STHeiti; color: #4c4948; }html,body{
min-height:100%; }img,input,button,a,select,textarea{
margin: 0; padding: 0; resize:none; border:none; outline:none; } ol,ul {
list-style:none; } h1,h2,h3,h4,h5,h6,p,em{
font-size:100%; word-wrap:break-word; font-weight: normal; font-style: normal; }a:active, a:focus{
outline:none; }button::-moz-focus-inner,input::-moz-focus-inner{
padding:0; border:0; }table{
border-collapse:collapse; border-spacing:0; }.clearfix:after {
content: "."; display: block; height: 0; clear: both; visibility: hidden; font-size:0; }.clearfix{
zoom:1; }a{
color: #4c4948; text-decoration: none; }.img{
width: 190px; height: 120px; padding: 3px; border: 1px solid #ccc; position: absolute;z-index: 12; top: 50px; left: 50%; margin-left: -95px; } /*动画名字, 动画运行的时间,alternate平滑过渡, infinite是反复执行*/ .imgAnimation{
animation-name: imgAnimation; animation: imgAnimation 2s alternate infinite; -webkit-animation: imgAnimation 2s alternate infinite; -moz-animation: imgAnimation 2s alternate infinite; } /* @-webkit-keyframes imgAnimation{ 0%{ left: -198px} 100%{ left: 50%;} } @-moz-keyframes imgAnimation{ 0%{ left: -198px} 100%{ left: 50%;} } */ @-webkit-keyframes imgAnimation{
0%{ opacity: 0} 50%{
opacity: 0.5} 100%{
opacity: 1} } @-moz-keyframes imgAnimation{
0%{ opacity: 0} 50%{
opacity: 0.5} 100%{
opacity: 1} }

css中屏蔽的那部分代码就是图片飞入的css,简单实用,比当年手写js要方便的多,渐渐爱上css3了, 么么哒

 -------------------------------------------------------------------------------------------------------------------------------------

欢迎来到我的博客, 本人乃互联网行业一枚小小的螺丝钉—非典型程序员妹子.

留下微信地址,方便大家和我联系

 

 

转载于:https://www.cnblogs.com/iwangzheng/p/3840883.html

你可能感兴趣的文章
Python IDLE快捷键【转载合集】
查看>>
Bootstrap中glyphicons-halflings-regular.woff字体报404错notfound
查看>>
[C++] string与int, float, double相互转换
查看>>
ubuntu14.04安装chrome
查看>>
oracle中查询含字母的数据[正则表达式]
查看>>
1002. 写这个号码 (20)(数学啊 ZJU_PAT)
查看>>
【LeetCode】224. Basic Calculator
查看>>
Keil V4.72升级到V5.1X之后
查看>>
Google CFO 辞职信
查看>>
POJ2771_Guardian of Decency(二分图/最大独立集=N-最大匹配)
查看>>
Scala深入浅出实战经典之 List伴生对象操作方法代码实战.
查看>>
php 批量处理post数据
查看>>
RESTful架构详解(转)
查看>>
xcode 在哪里新建category、protocol等文件
查看>>
flash flex 程序出现错误 Error #2032
查看>>
【数据库】主键、外键、索引
查看>>
C#解析HTML
查看>>
导出/打印项目数据报表需要设置IE浏览器
查看>>
8个强大的基于Bootstrap的CSS框架
查看>>
MAC OSX在视图port哪个程序占用,杀死进程的方法
查看>>