-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pagination): hide 1 dot pagination (#4786)
* feat(pagination): hide 1 dot pagination * chore: use !important * chore: use !important
- Loading branch information
Showing
4 changed files
with
57 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Swiper Playground</title> | ||
<link rel="stylesheet" href="../../build/swiper-bundle.css" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Swiper Playground</title> | ||
<link rel="stylesheet" href="../../build/swiper-bundle.css" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
</head> | ||
<body> | ||
<section class="swiper-container"> | ||
<div class="swiper-slide">Slide 1</div> | ||
<div class="swiper-slide">Slide 2</div> | ||
<div class="swiper-slide">Slide 3</div> | ||
<div class="swiper-slide">Slide 4</div> | ||
<div class="swiper-slide">Slide 5</div> | ||
<div class="swiper-slide">Slide 6</div> | ||
<div class="swiper-slide">Slide 7</div> | ||
<div class="swiper-slide">Slide 8</div> | ||
<div class="swiper-slide">Slide 9</div> | ||
<div class="swiper-slide">Slide 10</div> | ||
</section> | ||
<a href="#" class="append-slide">Append</a> | ||
<style> | ||
body, | ||
html { | ||
padding: 0; | ||
margin: 0; | ||
position: relative; | ||
height: 100%; | ||
} | ||
|
||
<body> | ||
<section class="swiper-container"> | ||
<div class="swiper-slide">Slide 1</div> | ||
<div class="swiper-slide">Slide 2</div> | ||
<div class="swiper-slide">Slide 3</div> | ||
<div class="swiper-slide">Slide 4</div> | ||
<div class="swiper-slide">Slide 5</div> | ||
<div class="swiper-slide">Slide 6</div> | ||
<div class="swiper-slide">Slide 7</div> | ||
<div class="swiper-slide">Slide 8</div> | ||
<div class="swiper-slide">Slide 9</div> | ||
<div class="swiper-slide">Slide 10</div> | ||
</section> | ||
<style> | ||
body, | ||
html { | ||
padding: 0; | ||
margin: 0; | ||
position: relative; | ||
height: 100%; | ||
} | ||
|
||
.swiper-container { | ||
width: 100%; | ||
height: 300px; | ||
margin: 50px auto; | ||
} | ||
|
||
.swiper-slide { | ||
background: #f1f1f1; | ||
color: #000; | ||
text-align: center; | ||
line-height: 300px; | ||
} | ||
</style> | ||
<script type="module" src="./main.js"></script> | ||
</body> | ||
.swiper-container { | ||
width: 100%; | ||
height: 300px; | ||
margin: 50px auto; | ||
} | ||
|
||
.swiper-slide { | ||
background: #f1f1f1; | ||
color: #000; | ||
text-align: center; | ||
line-height: 300px; | ||
} | ||
</style> | ||
<script type="module" src="./main.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters