Liveweave: Generative AI Web Editor & HTML/CSS/JS Playground
Initializing
Liveweave
Web
expand_more
home
Home
data_object
CSS Explorer
arrow_outward
Palette
Color Explorer
arrow_outward
Polyline
Graphics Editor
arrow_outward
data_array
Python Editor
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> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> <title>Plan lekcji</title> </head> <body> <!-- Start your code here --> <h1 id="title">Plan klasy:</h1> <div id="back" class="button">Wróć</div> <div id="buttons"><div class="button 2a">2A</div><div class="button 6b">6B</div></div> <!-- End your code here --> </body> </html>
#buttons { margin: -65 0 0 150px; } #back { float: right; } .button{ display: inline-block; border: 1px solid #000000; width: 10%; text-align: center; font-style: italic; font-size: 24px; margin: 10px; position: relative; cursor: pointer; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; background-color: #FFEBCD } .button:hover { background-color: #FFD700; }
/* Write JavaScript here */ var planklasy = ''; $('.button').click(function(){ if ($('.button').attr('id') != 'back'){ planklasy = $(this).text(); $('#buttons').fadeOut(100); $('#title').text($('#title').text() +' ' +planklasy); } });
Check out the new AI-powered Python Playground
×