Liveweave: Generative AI Web Editor & HTML/CSS/JS Playground
Initializing
Liveweave
Web
expand_more
home
Home
Palette
Color Explorer
arrow_outward
Polyline
Graphics Editor
arrow_outward
frame_source
Python Playground
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
Fork
account_circle
Login
settings
Settings
expand_more
Editor font
14
px
A
A
Line number
Mini map
Word wrap
sync_alt
Reset Settings
smart_display
Run
left_panel_close
AI Assistant
dashboard
All
HTML
CSS
JS
visibility
Preview
bolt
Live Preview
terminal
JS Console
<!DOCTYPE html> <html> <head> <title>Barcode Demo</title> <link href="https://fonts.googleapis.com/css2?family=Libre+Barcode+39+Text&display=swap" rel="stylesheet"> </head> <body> <!-- Start your code here --> <button class="noselect">Barcode</button> <!-- End your code here --> </body> </html>
* { margin: 0; padding: 0; box-sizing: border-box; } body { height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; background-color: #f9ea8f; background-image: linear-gradient(315deg, #f9ea8f 0%, #aff1da 74%); } .noselect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent; } button { cursor: pointer; font-family: 'Libre Barcode 39 Text', cursive; font-size: 100px; background: none; border: none; } button:before { content: ''; position: absolute; width: 340px; height: 5px; transform: translateX(-3px) translateY(-5px); background: rgba(255, 0, 0, 0.0); transition: 500ms; } button:hover:before { animation: line 500ms forwards; } button:hover { animation: blink 500ms 300ms; } @keyframes line { from { background: rgba(255, 0, 0, 0.8); } to { background: rgba(255, 0, 0, 0.8); transform: translateX(-3px) translateY(38px); } } @keyframes blink { from { color: #eee; } to { color: black; } } button:focus { outline: none; }
// Write JavaScript here
terminal
JavaScript Console
Preview
Clear
close
›
Run