Tip: Click lines to highlight, hold ctrl/cmd to multi-select
CSS Keyframe example (12-Aug @ 12:27)
Safari keyframe animations
Syntax Highlighted Code
- .divSlide {
- -webkit-animation-name: "slide-me-to-the-right";
- -webkit-animation-duration: 1s;
- }
- @-webkit-keyframes "slide-me-to-the-right" {
- from { left: 0px; }
- to { left: 100px; }
- }
Plain Code
.divSlide {
-webkit-animation-name: "slide-me-to-the-right";
-webkit-animation-duration: 1s;
}
@-webkit-keyframes "slide-me-to-the-right" {
from { left: 0px; }
to { left: 100px; }
}