Compiler
CSS Properties
animation-direction
Run
<!DOCTYPE html> <html> <head> <style> .box { position: relative; width: 80px; height: 80px; background: #00ab55; animation: moveit 6s; animation-direction: alternate; } @keyframes moveit { 0% {background: #ff4842; left: 0; top: 0;} 25% {background: #ffc107; left: 250px; top: 0;} 50% {background: #1890FF; left: 250px; top: 250px;} 75% {background: #00ab55; left: 0; top: 250px;} 100% {background: #ff4842; left: 0; top: 0;} } </style> </head> <body> <h1>The animation-direction Property</h1> <div class="box"></div> </body> </html>
Editor Commands
Commands
Shortcut Key (Win)
Shortcut Key (Mac)
selectAll
Ctrl-A
Cmd-A
singleSelection
Esc
-
killLine
-
Ctrl-K (Mac)
deleteLine
Ctrl-D
Cmd-D
undo
Ctrl-Z
Cmd-Z
redo
Ctrl-Y
Shift-Cmd-Z, Cmd-Y
undoSelection
Ctrl-U
Cmd-U
redoSelection
Alt-U
Shift-Cmd-U
goDocStart
Ctrl-Home
Cmd-Up, Cmd-Home
goDocEnd
Ctrl-End
Cmd-End, Cmd-Down
goLineStart
Alt-Left
Ctrl-A
goLineEnd
Alt-Right
Ctrl-E
goLineRight
-
Cmd-Right
goLineLeft
-
Cmd-Left
goLineUp
Up
Ctrl-P
goLineDown
Down
Ctrl-N
goPageUp
PageUp
Shift-Ctrl-V
goPageDown
PageDown
Ctrl-V
newlineAndIndent
Enter
-
save
Ctrl-S
Cmd-S