發表文章

目前顯示的是有「Carousel」標籤的文章

Bootstrap 4 旋轉木馬用滑鼠左右滑動切換圖片

圖片
Bootstrap 4 Carousel (旋轉木馬)一直都是很常用到也很好用的套件,前幾天因為收到了需要左右滑動網頁區塊的需求,因此思考了一下,用了旋轉木馬為基礎的滑動區塊。 於是我上網搜尋了一下,發現了 這個提問 下面的回答,決定拿來改成我要的樣子。 首先我想關掉自動切換圖片的功能,於是在程式碼中加了 data-interval="false", <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel" data-interval="false"> ... </div> 再來我想把旋轉木馬的既定印象進一步挪掉,於是把左右切換子區塊的按鈕拿掉, <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel" data-interval="false"> ... <!-- <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="carousel-control-next" href=...