Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>Swiper demo</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
- <!-- Link Swiper's CSS -->
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
- <!-- Demo styles -->
- <style>
- html,
- body {
- position: relative;
- height: 100%;
- }
- body {
- background: #eee;
- font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
- font-size: 14px;
- color: #000;
- margin: 0;
- padding: 0;
- }
- body {
- background: peachpuff;
- font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
- font-size: 14px;
- color: #000;
- margin: 0;
- padding: 0;
- }
- html,
- body {
- position: relative;
- height: 100%;
- }
- body {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .swiper {
- width: 240px;
- height: 320px;
- }
- .swiper-slide {
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 18px;
- font-size: 22px;
- font-weight: bold;
- color: #fff;
- }
- .rectangle{
- width: 210px;
- height: 280px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 18px;
- font-size: 22px;
- font-weight: bold;
- background-color: #b886c1;
- }
- .image{
- margin-left: -8%;
- }
- .swiper-slide:nth-child(1n) {
- background-color: #fff;
- }
- .swiper-slide:nth-child(2n) {
- background-color: rgb(0, 140, 255);
- }
- .swiper-slide:nth-child(3n) {
- background-color: rgb(10, 184, 111);
- }
- .swiper-slide:nth-child(4n) {
- background-color: rgb(211, 122, 7);
- }
- .swiper-slide:nth-child(5n) {
- background-color: rgb(118, 163, 12);
- }
- .swiper-slide:nth-child(6n) {
- background-color: rgb(180, 10, 47);
- }
- .swiper-slide:nth-child(7n) {
- background-color: rgb(35, 99, 19);
- }
- .swiper-slide:nth-child(8n) {
- background-color: rgb(0, 68, 255);
- }
- .swiper-slide:nth-child(9n) {
- background-color: rgb(218, 12, 218);
- }
- .swiper-slide:nth-child(10n) {
- background-color: rgb(54, 94, 77);
- }
- #header{
- margin-top: -2%;
- margin-left: 10%;
- }
- </style>
- </head>
- <body>
- <!-- Swiper -->
- <div class="swiper mySwiper">
- <div class="swiper-wrapper">
- <div class="swiper-slide"><div class="rectangle">
- <div class="rectangle1">
- <div class="circle">
- <div class="image">
- <img src="images/art_gallery.png" style="width: 110%">
- </div>
- </div>
- </div>
- </div></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>
- </div>
- <!-- Swiper JS -->
- <script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
- <!-- Initialize Swiper -->
- <script>
- var swiper = new Swiper(".mySwiper", {
- effect: "cards",
- grabCursor: true,
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement