投稿

ラベル(keyframes)が付いた投稿を表示しています

CSS3とframe animationのサンプルとprefixfree.js

CSS3とframe animationのサンプル prefixfree.js を使ってプリフィックスなしにしている。 とても便利。 尚、もとのソースは... http://coding.smashingmagazine.com/2011/05/17/an-introduction-to-css3-keyframe-animations/ からシンプルにしたものである。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>CSS3 animation with prefixfree.js</title> <script src="prefixfree.min.js"></script> <style> #container {   width: 1080px;   margin: 0 auto;   overflow: hidden;   padding: 50px 20px 0 20px; } #sun {   background: #ffd630;   width: 130px;   height: 130px;   position: absolute;   border-radius: 70px;   z-index: 2;   bottom: 0;   left: 340px; } @keyframes sunrise {    0% {     bottom: 0;     left: 340px;     background: #f00;   }  33% {     bottom: 340px;     left: 340px;     background: #ffd630;   } ...