Initializing
Liveweave
Web
expand_more
home
Home
data_object
CSS Explorer
arrow_outward
Palette
Color Explorer
arrow_outward
Polyline
Graphics Editor
arrow_outward
outbox_alt
Generative AI
arrow_outward
frame_source
Python Playground
New
arrow_outward
build
Tools
expand_more
restart_alt
Load "Hello Weaver!"
post_add
Generate Lorem ipsum...
code
Format HTML
code_blocks
Format CSS
data_object
Format JavaScript
library_add
Library
expand_more
A
Algolia JS
Animate CSS
Apex Charts JS
B
Bulma CSS
Bootstrap
C
Chart JS
Chartist
Create JS
D
D3
Dojo
F
Foundation
Fullpage JS
G
Granim JS
Google Charts
H
Halfmoon
J
jQuery
M
Materialize
Moment JS
Masonry JS
Milligram CSS
P
Pure CSS
Primer CSS
Popper JS
Pattern CSS
Picnic CSS
R
React JS
Raphael JS
Raisin CSS
S
Semantic UI
Skeleton CSS
Spectre CSS
Tachyons CSS
T
Tailwind
Three JS
U
UI Kit
Vis JS
W
Water CSS
download
Download
expand_more
developer_mode
Download as HTML
folder_zip
Download as .ZIP
cloud_upload
Save
account_circle
Login
settings
Settings
expand_more
14
px
Live mode
Night mode
Line number
Mini map
Word wrap
sync_alt
Reset Settings
smart_display
Run
<!DOCTYPE html> <html> <head> <title>HTML, CSS and JavaScript demo</title> </head> <body> <div class="content"> <div class="circle circle0"> <div class="circle second-circle circle1"> <div class="circle circle2"> <div class="circle second-circle circle3"> <div class="circle circle4"> <div class="circle second-circle circle5"> <div class="circle circle6"> <div class="circle second-circle circle7"> <div class="circle circle8"> <div class="circle second-circle circle9"> <div class="circle circle10"> <div class="circle second-circle circle11"> <div class="circle circle12"> </div> </div> </div> </div> </div> </body> </html>
body { overflow: hidden; } .content { width: 400px; height: 400px; margin: 10% auto; position: relative; } .circle { margin: auto; position: absolute; xborder-radius: 50%; background: #8A795D; width: 86%; height: 86%; top: 24px; left: 24px; box-shadow: 4px 4px 16px #000; animation-timing-function: linear; animation-name: rotation; animation-duration: 10s; animation-iteration-count: infinite; animation-direction: normal; } .second-circle { background: #fff; } .circle0 { xanimation-duration: 3s; } .circle1 { xanimation-duration: 6s; } .circle2 { xanimation-duration: 9s; } .circle3 { xanimation-duration: 12s; } .circle4 { xanimation-duration: 15s; } .circle5 { xanimation-duration: 18s; } .circle6 { xanimation-duration: 21s; } .circle7 { animation-duration: 24s; } .circle8 { xanimation-duration: 27s; } .circle9 { xanimation-duration: 30s; } .circle10 { xanimation-duration: 33s; } .circle11 { xanimation-duration: 36s; } .circle12 { background: orangered; xanimation-duration: 39s; } @keyframes rotation { from { transform: rotate(0deg) ; } to { transform: rotate(359deg); } }
// Write JavaScript here