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> <script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script> <title>カルーセルパãƒãƒ«</title> </head> <body> <!-- Start your code here --> <div id="carousel-wrapper"> <button id="prevBtn" class="btn">PREV</button> <div id="carousel-area"> <ul> <li><img src="https://placekitten.com/150/150?image=1" width="150" height="150"></li> <li><img src="https://placekitten.com/150/150?image=2" width="150" height="150"></li> <li><img src="https://placekitten.com/150/150?image=3" width="150" height="150"></li> <li><img src="https://placekitten.com/150/150?image=4" width="150" height="150"></li> <li><img src="https://placekitten.com/150/150?image=5" width="150" height="150"></li> <li><img src="https://placekitten.com/150/150?image=6" width="150" height="150"></li> <li><img src="https://placekitten.com/150/150?image=7" width="150" height="150"></li> <li><img src="https://placekitten.com/150/150?image=8" width="150" height="150"></li> </ul> </div> <button id="nextBtn" class="btn">NEXT</button> </div> <!-- End your code here --> </body> </html>
*{ margin: 0; padding: 0; } ul,li{ list-style: none; } #carousel-wrapper{ display: flex; align-items: center; justify-content: center; } #carousel-area{ width: 970px; overflow: hidden; margin: 0 5px; } #carousel-area ul{ display: flex; margin: 0 5px; } #carousel-area li{ margin: 10px 5px; } button{ width: 60px; height: 25px; border-radius: 5px; }
$(function(){ // åˆæœŸè¨å®š $("#carousel-area li:last").prependTo("#carousel-area ul"); $("#carousel-area ul").css({ marginLeft: "-155px" }); // クリック時ã®ã‚¤ãƒ™ãƒ³ãƒˆ $(".btn").click(function(){ var btnId = $(this).attr("id"); // 戻るボタン if(btnId == "prevBtn"){ $("#carousel-area ul").animate({ marginLeft: "-315px" },function(){ $("#carousel-area li:first").appendTo("#carousel-area ul"); $("#carousel-area ul").css({ marginLeft: "-155px" }); }) // 次ã¸ãƒœã‚¿ãƒ³ }else if(btnId == "nextBtn"){ $("#carousel-area ul").animate({ marginLeft: "5px" },function(){ $("#carousel-area li:last").prependTo("#carousel-area ul"); $("#carousel-area ul").css({ marginLeft: "-155px" }); }) } }) })