/* Sass Document */ .barchart { width: 300px; margin: 0 auto; border: solid 5px #ccc; } [class*=date] { height: 20px; margin: 10px 0; background: #ccc; @include animation( anime1 1s 1 ease); } .date1 {background: #0c9} .date2 {background: #09c} .date3 {background: #0cc} @-webkit-keyframes anime1 { 0% {width: 0px;} } @keyframes anime1 { //IE用 0% {width: 0px;} }