CSS3下Animations动画库示例

一、CSS3动画库 Animatable

什么是css3动画?

通过 CSS3,我们能够创建动画,这可以在许多网页中取代动画图片、Flash 动画以及 JavaScript。

CSS3带来了圆角,半透明,阴影,渐变,多背景图等新的特征,轻松实现了设计稿中常见的图层样式,用简洁的代码替代图片,代替了多余的空标签。

现成的CSS3动画库: http://leaverou.github.io/animatable/

background-color

.background-color { background:#708090; animation:1s ease 0s alternate none infinite background-color;}
@keyframes background-color{
    from{ background:#708090;}
    to{ background:#000;}
}
1

background-position

background-position 属性设置背景图像的起始位置,默认值:0% 0%,效果等同于left top

范例一:

.background-position-1 { background-image: -moz-linear-gradient(-45deg, transparent 25%, black 25%, black 50%, transparent 50%, transparent 75%, black 75%, black); background-size:50px 50px; animation:1s ease 0s alternate none infinite background-position-1;}
@keyframes background-position-1{
  from{ background-position:0 0;}
  to{ background-position:100% 100%;}
}
1

范例二:

.background-position-2 { background-color: #E04332; background-repeat: repeat-x; background-size: 24px 300px; background-image: linear-gradient(-45deg, slategray 25%, transparent 25%), linear-gradient(45deg, transparent 75%, slategray 75%), linear-gradient(45deg, slategray 25%, transparent 25%), linear-gradient(-45deg, transparent 75%, slategray 75%); animation:1s ease 0s alternate none infinite background-position-2;}
@keyframes background-position-2{
  from{ background-position:3px 0, 3px 0, 15px -150px, 15px -150px;}
  to{ background-position:3px -70px, 3px -70px, 15px -80px, 15px -80px;}
}
1

background-size

background-size 属性规定背景图片的尺寸。在 CSS3 之前,背景图片的尺寸是由图片的实际尺寸决定的。在CSS3中,可以规定背景图片的尺寸,这就允许我们在不同的环境中重复使用背景图片。

.background-size {background-image: repeating-radial-gradient(transparent, transparent 9px, black 11px, black 20px); background-position:center; animation:1s ease 0s alternate none infinite background-size;}
@keyframes background-size{
    from{ background-size:5px 5px;}
    to{ background-size:150px 150px;}
}
1

border-radius

border-radius 属性是一个简写属性,用于设置四个 border-*-radius 属性。

范例一

.border-radius-1 { animation:1s ease 0s alternate none infinite border-radius-1;}
@keyframes border-radius-1{
  from{ border-radius:0;}
  to{ border-radius:50%;}
}
1

范例二

.border-radius-2 { animation:1s ease 0s alternate none infinite border-radius-2;}
@keyframes border-radius-2{
  from{ border-radius:0 100%;}
  to{ border-radius:100% 0;}
}
1

border-width

范例一

.border-width-1 {border-style:solid; border-color: black; animation:1s ease 0s alternate none infinite border-width-1;}
@keyframes border-width-1{
    from{ border-width:0;}
    to{ border-width:75px;}
}
1

范例二

.border-width-2 {border-style:dashed; border-color: black; animation:1s ease 0s alternate none infinite border-width-2;}
@keyframes border-width-2{
    from{ border-width:0;}
    to{ border-width:35px;}
}
1

范例三

.border-width-3 {border-style:double; border-color: black; animation:1s ease 0s alternate none infinite border-width-3;}
@keyframes border-width-3{
    from{ border-width:0;}
    to{ border-width:75px;}
}
1

box-shadow

box-shadow 属性向框添加一个或多个阴影

范例一

.box-shadow-1 { animation:1s ease 0s alternate none infinite box-shadow-1;}
@keyframes box-shadow-1{
    from{ box-shadow:0 0 black;}
    to{ box-shadow:0 150px 10px -50px rgba(0,0,0,.5);}
}
1

范例二

.box-shadow-2 { animation:1s ease 0s alternate none infinite box-shadow-2;}
@keyframes box-shadow-2{
    from{ box-shadow:none;}
    to{ box-shadow:inset -75px -75px 400px #000;}
}
1

范例三

.box-shadow-3 { box-radius: 1px; animation:1s ease 0s alternate none infinite box-shadow-3;}
@keyframes box-shadow-3{
    from{ box-shadow:inset 0 0 75px 75px slategray, 0 0 0 slategray;}
    to{ box-shadow:inset 0 0 35px 35px transparent, 0 0 75px 50px transparent;}
}
1

color

CSS3 Color属性在传统的hex和RGB值中增加了HSL特性,也就是增加了Opacity(透明度)和Alpha channels

.color { animation:1s ease 0s alternate none infinite color;}
@keyframes color{
    from{ color:white;}
    to{ color:black;}
}
1

font-size

.font-size { animation:1s ease 0s alternate none infinite font-size;}
@keyframes font-size{
    from{ font-size:60px;}
    to{ font-size:300px;}
}
1

width

.width { animation:1s ease 0s alternate none infinite width;}
@keyframes width{
    from{ width:150px;}
    to{ width:330px;}
}
1

height

.height { animation:1s ease 0s alternate none infinite height;}
@keyframes height{
    from{ height:150px;}
    to{ height:0;}
}
1

letter-spacing

.letter-spacing { animation:1s ease 0s alternate none infinite letter-spacing;}
@keyframes letter-spacing{
    from{ letter-spacing:0;}
    to{ letter-spacing:100px;}
}
1

line-height

.line-height { animation:1s ease 0s alternate none infinite line-height;}
@keyframes line-height{
    from{ line-height:10px;}
    to{ line-height:300px;}
}
1

opacity

.opacity { animation:1s ease 0s alternate none infinite opacity;}
@keyframes opacity{
    from{ opacity:1;}
    to{ opacity:0;}
}
1

outline-width

.outline-width { outline-color:black; outline-style: solid; animation:1s ease 0s alternate none infinite outline-width;}
@keyframes outline-width{
    from{ outline-width:0;}
    to{ outline-width:100px;}
}
1

outline-offset

.outline-offset { outline-style: dashed; outline-color:slategray; animation:1s ease 0s alternate none infinite outline-offset;}
@keyframes outline-offset{
    from{ outline-offset:-5px;}
    to{ outline-offset:30px;}
}
1

outline-color

.outline-color { outline-width: 30px; outline-style: solid; animation:1s ease 0s alternate none infinite outline-color;}
@keyframes outline-color{
    from{ outline-color:transparent;}
    to{ outline-color:red;}
}
1

padding

.padding { animation:1s ease 0s alternate none infinite padding;}
@keyframes padding{
    from{ padding:0;}
    to{ padding:0 200px 0 50px;}
}
1

text-indent

.text-indent { animation:1s ease 0s alternate none infinite text-indent;}
@keyframes text-indent{
    from{ text-indent:0;}
    to{ text-indent:100px;}
}
1

text-shadow

范例一

.text-shadow-1 { animation:1s ease 0s alternate none infinite text-shadow-1;}
@keyframes text-shadow-1{
    from{ text-shadow:0 0 black;}
    to{ text-shadow:20px 20px 10px rgba(0,0,0,.5);}
}
1

范例二

.text-shadow-2 { color: transparent; animation:1s ease 0s alternate none infinite text-shadow-2;}
@keyframes text-shadow-2{
    from{ text-shadow:0 0 0 white;}
    to{ text-shadow:0 0 10px white;}
}
1

范例三

.text-shadow-3 { color: transparent; animation:1s ease 0s alternate none infinite text-shadow-3;}
@keyframes text-shadow-3{
    from{ text-shadow:0 0 white;}
    to{ text-shadow:0 0 rgba(255,255,255,0), -45px -45px 0 red, -30px -30px 0 orange, -15px -15px 0 yellow, 0 0 0 green, 15px 15px 0 blue, 30px 30px 0 indigo, 45px 45px 0 violet;}
}
1

top

.top { position:relative; animation:1s ease 0s alternate none infinite top;}
@keyframes top{
    from{ top:0;}
    to{ top:100px;}
}
1

transform

范例一

.transform-1 { animation:1s ease 0s alternate none infinite transform-1;}
@keyframes transform-1{
    from{ transform:rotate(0deg);}
    to{ transform:rotate(360deg);}
}
1

范例二

.transform-2 { animation:1s ease 0s alternate none infinite transform-2;}
@keyframes transform-2{
    from{ transform:scale(1);}
    to{ transform:scale(2);}
}
1

范例三

.transform-3 { animation:1s ease 0s alternate none infinite transform-3;}
@keyframes transform-3{
    from{ transform:skew(0);}
    to{ transform:skew(180deg);}
}
1

范例四

.transform-4 { animation:1s ease 0s alternate none infinite transform-4;}
@keyframes transform-4{
    from{ transform:rotate(0) scale(1);}
    to{ transform:rotate(360deg) scale(0);}
}
1

范例五

.transform-5 { animation:1s ease 0s alternate none infinite transform-5;}
@keyframes transform-5{
    from{ transform:perspective(400px) rotateY(0);}
    to{ transform:perspective(400px) rotateY(360deg);}
}
1

范例六

.transform-6 { animation:1s ease 0s alternate none infinite transform-6;}
@keyframes transform-6{
    from{ transform:perspective(400px) rotateX(0);}
    to{ transform:perspective(400px) rotateX(360deg);}
}
1

范例七

.transform-7 { animation:1s ease 0s alternate none infinite transform-7;}
@keyframes transform-7{
    from{ transform:perspective(400px) rotateY(0);}
    to{ transform:perspective(400px) translateZ(150px) rotateY(180deg);}
}
1

范例八

.transform-8 { animation:1s ease 0s alternate none infinite transform-8;}
@keyframes transform-8{
    from{ transform:perspective(400px) translate3d(0,0,0) rotateX(0) rotateY(0) rotateZ(0);}
    to{ transform:perspective(400px) translate3d(0,0,-5000px) rotateX(720deg) rotateY(360deg) rotateZ(-360deg);}
}
1

范例九

.transform-9 { animation:1s ease 0s alternate none infinite transform-9;}
@keyframes transform-9{
    from{ transform:perspective(400px) rotate3d(.5,.5,0,0deg);}
    to{ transform:perspective(400px) rotate3d(.5,.5,0,180deg);}
}
1

范例十

.transform-10 {transform-origin: 100% 50%; animation:1s ease 0s alternate none infinite transform-10;}
@keyframes transform-10{
    from{ transform:perspective(400px) rotate3d(0,1,0,0deg);}
    to{ transform:perspective(400px) rotate3d(0,1,0,-180deg);}
}
1

范例十一

.transform-origin {transform:rotate(45deg); animation:1s ease 0s alternate none infinite transform-origin;}
@keyframes transform-origin{
    from{ transform-origin:50% 50%;}
    to{ transform-origin:0 100%;}
}

时间: 2024-09-27 07:14:02

CSS3下Animations动画库示例的相关文章

css3常用动画+动画库

一.animates.css animate.css是来自dropbox的工程师Daniel Eden开发的一款CSS3的动画效果小类库.包含了60多款不同类型的CSS3动画,包括:晃动,闪动,各种淡出淡出效果,如果你想快速的整合各种CSS3动画特效的话,使用它即可方便的实现.   查看演示: https://daneden.github.io/animate.css/  github地址: https://github.com/daneden/animate.css  二.magic.css动

jquery中animate和CSS3实现缓动追逐示例

CSS3和jquery都可以实现缓动追逐效果,但是考虑到浏览器的兼容性,建议使用jquery animate方法来实现. 实现效果如下: 引用文件:jquery-1.11.1.min.js html <div id="container">   <div id="first"></div>   <div id="second"></div> </div> 代码 jquery

2016年九大前端必备动画库

  进入2016年,随着各种类型网络技术的快速发展,动画 库能为我们的网页设计 增添很多视觉趣味.作为前/后端的开发人员来说,熟悉及掌握好各种动画 库(甚至抽取搭建成自己优化的动画库)代码,便能轻松省时省力地完成各种工作需求.即使客户或用户的UI设计需求越来越多,再加上设计大神们提交的动画动效DEMO,本文推荐的这些动画库基本都能在浏览器里面实现出来咯.希望对各位开发童鞋来说能有所帮助. 1. Animate.css 创建者:Daniel Eden 发布日期:2013年 最新版本:3.4.0 关

常用手势小动画库 for AE

  Hello大家好!这次我要分享一款原创的手势小动画库(就是Demo中的那个小圆点点).既然能称之为"库",那一定要符合随时调用,可复用的特点.我也是为此琢磨了好一阵,制作了这么一款手势库(很可惜我不会制作脚本插件,只能以ape工程文件的形式调用,脚步插件是接下来的努力方向!). 那么先简单介绍一下这个手势小动画库吧.里面包含:单击.双击.长按.拖拽.缩放.旋转等常用手势;单击.长按和拖拽支持单指.双指.三指.功能不多,但基本符合大部分场景需要. [常用手势] [使用方法] 首先将手

[转] iOS 动画库 Pop 和 Canvas 各自的优势和劣势是什么?

iOS 动画库 Pop 和 Canvas 各自的优势和劣势是什么? http://www.zhihu.com/question/23654895/answer/25541037 拿 Canvas 来和 Pop 比其实不大合适,虽然两者都自称「动画库」,但是「库」这个词的含义有所区别.本质上 Canvas 是一个「动画合集」而 Pop 是一个「动画引擎」. 先说 Canvas.Canvas 的目的是「Animate in Xcode Without Code」.开发者可以通过在 Storyboar

tween.js 用户指南 - 与 Three.js 配合使用的补间动画库

tween.js 用户指南 - 与 Three.js 配合使用的补间动画库 太阳火神的美丽人生 (http://blog.csdn.net/opengl_es) 本文遵循"署名-非商业用途-保持一致"创作公用协议 转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS.Android.Html5.Arduino.pcDuino,否则,出自本博客的文章拒绝转载或再转载,谢谢合作. Learning Three.js - Tween.js for Sm

CSS3下的渐变文字效果实现

核心提示:CSS3下的渐变文字效果实现 一.方法一:借助mask-image属性 如果您手头上的浏览器是Chrome或是Safari,则您可以在demo页面中看到类似下面的效果: 相应的HTML代码如下: 天赐美妞  与HTML相对应的CSS代码如下: .text-gradient {display: inline-block;font-family: ´微软雅黑´;font-size: 10em;position: relative;} .text-gradient[data-text]::a

CSS3实例教程:CSS3下拉菜单代码解析

上个星期我发布了一篇CSS3下拉菜单,有人反映说我将CSS代码解释的不够详细.那么,这篇文章将会对新的CSS属性作出解释,包括:text-shadow,box-shadow和border-radius.这些CSS3属性是最常用到的,了解它们准没错. RGBA 前三个值是RGB颜色值,最后一个值表示透明程度(0代表完全透明,1代表完全不透明). RGBA可以应用于任何设计颜色的属性,例如文字颜色.边框颜色.背景颜色.阴影颜色等等. 文字阴影 文字阴影按照如下顺序组织:x-offset,y-offs

jquery+css3实现会动的小圆圈效果_jquery

本文实例讲述了jquery+css3实现会动的小圆圈效果.分享给大家供大家参考,具体如下: 运行效果截图如下: 具体代码如下: <!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="utf-8" /> <title>那些变换颜色的小豆豆</title> <script type="text/javascript&quo