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
<!--- draggable music player on desktop ---> <head> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous"> </head> <style> @font-face { font-family: handy; src: url(https://dl.dropbox.com/s/ga9hf4idu3egjb5/handy00.ttf); } img:hover { cursor:help; } #musicplayer{ display:grid; grid-template-columns:20px auto; align-items:center; width: 20em; font-family: handy; font-size: 15px; color:#FF78BC; line-height:140%; border: 1px solid #FFB3DE; border-radius: 3px; background:white; } #musictitle{ font-family: arial; overflow: hidden; white-space: nowrap; display:inline-block; width: calc(100% - 10px - 1px); margin-left: calc(10px + 1px); } #musicpixel{ width: 1.4em; padding: 5px; position:relative; min-height: 15px; background:white; border-right: 1px solid #FFB3DE; } .overlay { opacity:0; position:absolute; top:0; left:0; text-align:center; width:100%; height:100%; transition:0.3s ease; background: pink; } #musicplayer:hover .overlay { opacity: 1; transition:0.3s ease; } .playpause{ position: absolute; top: 50%; left: 50%; transform: translate(-40%, -50%); } .playpause:hover{ cursor:help; } #musicpixel img{ display:block; } .marquee{ display: inline-block; padding-left: 100%; animation: marquee 10s linear infinite; } @keyframes marquee{ 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } } </style> <div id='musicplayer'> <div id='musicpixel'> <img src='https://tomomi.neocities.org/pixeles/187.gif'> <div class='overlay'> <div class='playpause'><i class="fas fa-play"></i></div> </div> </div> <div id='musictitle'> <span class='marquee'>visa wisa testingggggg teehee </span> </div> </div> <audio id='musicsrc' loop src='https://files.catbox.moe/jl6bay.mp3'></audio> <link rel="stylesheet" href="//code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css">