• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

[Locked] Full screen slide using Carousel.

Participant ,
Nov 18, 2018 Nov 18, 2018

Copy link to clipboard

Copied

Good evening. I'm looking to do a Carousel page on my website. I want to be able have the pictures cover the entire page, similar to when you add a image to the background of your website. Is this possible? And if so, what do I need to do, to make this possible?

Views

4.6K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 18, 2018 Nov 18, 2018

Copy link to clipboard

Copied

Hi, Could do with some more detail so people can help you. is the website built with a framework like Bootstrap? If it is there a plenty Bootstrap Carousel examples.

Can you post a link to website/page?

There are plenty of 'drop in' solutions that would need a little bit of coding knowledge to implement, couple of examples

WOW Full Screen Slider

Full Screen/Window Slider - PC - Jssor Slider

Paul-M - Community Expert

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 18, 2018 Nov 18, 2018

Copy link to clipboard

Copied

Evening. Yes. It will made with Bootstrap. Here's an example via link.

NIGEL BARKER

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 18, 2018 Nov 18, 2018

Copy link to clipboard

Copied

Have a look at https://www.dmxzone.com/go/33301/app-connect-swiper

Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 19, 2018 Nov 19, 2018

Copy link to clipboard

Copied

I don't know which framework they used, but your example site is not made with Bootstrap.   To answer your question about full screen width in Bootstrap, use container-fluid instead of container.

Bootstrap 4 Grid System

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 19, 2018 Nov 19, 2018

Copy link to clipboard

Copied

Yes, I'm aware that the Nigel's website is not using Bootstrap. I had looked at his code last week. My sole purpose was to show "Energize" what I want to accomplish. I knew that it could be done, but I  was not sure and didn't want to make any assumptions, so I know/knew that I can get my answer to the question here, before I get into it. With that being said, I'll look at the replies and suggestions on here. Regarding the fluid-container, that is what I'm using. I haven't done this for a long time as well not having a lot of knowledge. But this gives me something to work. I need to learn how to code. I was only doing just enough to get my site up. But that's not good enough.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

https://forums.adobe.com/people/Nancy+OShea  wrote

I don't know which framework they used, 

Me neither BUT if you widen and narrow the url that was posted it has issues - look at the nav in the top right corner jump over to the extreme left and crumble up........that's just a basic coding error and should never have been allowed to see the light of day if it was checked properly - BUT hey I guess I'll get accused of whatever by Ben for wanting things to look right and work correctly.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 19, 2018 Nov 19, 2018

Copy link to clipboard

Copied

Legacys7  wrote

Good evening. I'm looking to do a Carousel page on my website. I want to be able have the pictures cover the entire page, similar to when you add a image to the background of your website. Is this possible? And if so, what do I need to do, to make this possible?

One below using a vue js plugin and a bit of bespoke coding:

<!DOCTYPE html>

<html lang="en" >

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

<title>Vue-Swiper</title>

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>

<script src='https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/js/swiper.js'></script>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">

<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/css/swiper.css'>

<style>

body {

margin: 0;

background-color: #000;

}

* {

box-sizing: border-box;

}

.swiper-container {

height: 100vh;

width: 100vw;

text-align: center;

}

.slide {

height: 100vh;

width: 80%;

background-size: cover;

background-position: center;

background-repeat: no-repeat;

margin: 0 auto;

}

@media screen and (max-width: 768px) {

.slide {

width: 100%;

}

}

img {

height: 100%;

max-width: 80%;

}

.swiper-button-prev, .swiper-button-next {

display: flex;

justify-content: center;

background-image: none!important;

color: #fff;

font-size: 35px;

height: auto!important;

}

@media screen and (max-width: 768px) {

.swiper-button-prev {

background-color: #000;

border-radius: 4px;

padding: 0 9px 0 5px;

}

.swiper-button-next {

background-color: #000;

border-radius: 4px;

padding: 0 5px 0 9px;

}

}

</style>

</head>

<body >

<div id="app">

<div class="swiper-container">

<div class="swiper-wrapper">

<div class="swiper-slide" v-for="image in images">

<div class="slide"  v-bind:style='{ backgroundImage: "url(" + image + ")", }'></div>

</div>

</div>

<div class="swiper-button-prev"><i class="fa fa-angle-left"></i></div>

<div class="swiper-button-next"><i class="fa fa-angle-right"></i></div>

</div>

</div>

<!-- end app -->

<script >

var app = new Vue({

el: '#app',

data: {

images:[

'https://source.unsplash.com/random/?nature',

'https://source.unsplash.com/random/?animal',

'https://source.unsplash.com/random/?food',

'https://source.unsplash.com/random/?people',

'https://source.unsplash.com/random/?fashion',

'https://source.unsplash.com/random/?business'

],

infinite: true

},

mounted: function () {

var mySwiper = new Swiper ('.swiper-container', {

centeredSlides:true,

direction: 'horizontal',

loop: this.infinite,

nextButton: '.swiper-button-next',

prevButton: '.swiper-button-prev',

});

}

})

</script>

</body>

</html>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

This code is actually ideal for what I need. It's similar to the link that I'd sent as an example. BUT, when I'd added the code, all seem to work fine, until I go into the drop down menu, click on "fashion." But when I click on the drop down menu again, while on that page, the drop down doesn't want to open. As I'd already pointed out, my coding is lacking. So the information on here will help me, as well as gaining knowledge on the does and don't. FASHION

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

Fix your code errors. 

Showing results for http://michaelguydonphotography.com/fashion - Nu Html Checker

Bootstrap 4 requires jQuery, Popper and Bootstrap JS files.    I add scripts below the </footer> and above the </body> tags.

<!--latest jQuery Core-->

<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>

<!--Popper JS-->

<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>

<!--latest Bootstrap 4 JS-->

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

Thank you again Nancy. It's VERY obvious at this point that there is a ton that I have to learn. Do you have any recommendations on learning the basics and going from there? Or what is your recommendation period?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

First learn HTML5 and CSS.

HTML Tutorial

CSS Tutorial

If you intend to use Bootstrap,  do the tutorials and practice with the code in Try it Yourself demos.

Bootstrap 4 Tutorial

Later as your skills & confidence improve, learn to work with  JavaScript and jQuery.

JavaScript Tutorial

jQuery Introduction

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

Hi Legacy,

In the interest of full disclosure:

Nancy is a Bootstrap user. That is her thing. I am co-founder of the first company to make Dreamweaver extensions. Extensions are what made Dreamweaver a popular program. Quality extensions should be promoted because they make Dreamweaver a much better program. Adobe has drifted away from its roots and many talented coders who post here have a far different view of things than your typical ACP.

Bootstrap is severely bloated and its status is fairly polarized. Some people love it. Others hate it. However, it is not Adobe code. Adobe simply packs it inside Dreamweaver because they do not have an interest in making a home-grown page-layout engine... a ridiculously easy task for any advanced coder.

Please weigh the tips and responses you get in this forum very carefully, and note that the ACP label does not measure someone's coding, CSS, or scripting skills.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

ALsp  wrote

Please weigh the tips and responses you get in this forum very carefully, and note that the ACP label does not measure someone's coding, CSS, or scripting skills.

Amen to that.

I make no apologies for using Bootstrap.  It's used by millions of RWD sites for a reason.  It cuts coding time by 2/3.  It lends itself very well to frontend and backend CMS development.  And when used correctly, Bootstrap is no more bloated than any other coding framework. 

Of course Al hates open source frameworks because they don't put money in his picket. Al uses (some might even say abuses) his ACP status to promote his company's extensions.  If you have a budget for them, great.   And if Adobe doesn't mind, I don't really  care what Al does.   But let's keep it real for everyone.  Al is a shill for PVII.   His opinions about open source frameworks must be taken with several grains of salt because 1) he doesn't use them and 2) doesn't understand how they work.

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

Deja Vu. This debate mirrors a debate on the forum when I'd asked a question a few years ago, and the debate went back and forth. I don't even know if I recall what my reply was back then. But what I do know is that it took over the actual topic. I'm going to stay on topic. For those on here that have a different approach, I'm cool with that. But let's keep it at that vs getting away from the actual topic and questions. So far, you've helped me on this, as well as others have, and I appreciate that. My last question, I hope that it gets answered, and not end up getting thread jacked.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

I apologize if you believe I've hijacked your thread. I get frustrated by the state of this forum sometimes and allegiance to Bootstrap professed. Given the nature of your posts you should be using a finished solution until you learn to code one yourself. The problem is that from a coding perspective, the solutions recommended so far are not good one - unless you are willing to sacrifice quality. On that note, and to ensure you get the help you obviously came here for, contact me off-list and I will provide any of our extensions to you at no cost.

I am not a shill. I've been helping Dreamweaver users far longer than you might know.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

I'm a shill?

I am one of the reasons you have been able to find a home in this these forums, as are the other early extensions developers. I accepted an invitation to become an ACP under the understanding that I would be able to promote the extension community, which has dwindled to a precious few companies as a result of some of this forum's major posters.

You are so narrowminded and ignorant - and personally hurtful sometimes. I don't hate open source frameworks. If you would open your eyes you might see that if Dreamweaver used a well-written "framework" it would be a godsend for my company because instead of writing our own stuff from the damn ground up we could simply extend that framework. Do even understand how easy it would be for us to write a front-end for Bootstrap that works in Dreamweaver? I wonder sometimes who the "shill" actually is Nancy, and how lucrative this forum might in fact be for you.

I don't hijack threads. I just get sick of the nonsense I read every day.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

If you guys are going to debate, start another thread and have at it. I already got a red flag from you with another poster on here, where you got a bit sensitive on what was said. And yes, you are hijacking this. I don't need to read the love ad hate relationships. Let's stay on topic. Thank you. 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

Legacys7  wrote

If you guys are going to debate, start another thread and have at it. I already got a red flag from you with another poster on here, where you got a bit sensitive on what was said. And yes, you are hijacking this. I don't need to read the love ad hate relationships. Let's stay on topic. Thank you. 

If you can get a test page online and post a link to it, it will help get you a solution. I'm pretty sure I know what you want to do, but a proper solution would require seeing the code you are using, as well as the CSS and script. And my offer still stands. Contact me off-forum and I will give you a free Dreamweaver plugin to do what I think it is you want to do.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

I'll do that. But so far, I've been getting solutions from the other members that have solved some of my problems. At this point, my issues and concern is getting some things modified and getting my code fix. I've got replies and solutions on those too. I do appreciate the offer and I got your point regarding what you think that I need. However, I still do need to learn how to code, sooner or later. Probably more sooner than later. But for the time being, the quicker solutions have been a big benefit, because I have to get my site up and running, pertaining to my profession.

The code that was sent to me from Osgood is what I need. It works, but I'm stuck at the pictures part, where they're not responsive for mobile devices. And the other issue is being able to put my images in that particular slider. I see in the code that the current images are just links to those pictures. I need to use my work in my saved folder. If I can't resolve that issue first, I'll email you off forum regarding the plugin that you're talking about. Here's my page with the slider. FASHION

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Nov 20, 2018 Nov 20, 2018

Copy link to clipboard

Copied

The code that was sent to me from Osgood is what I need. It works, but I'm stuck at the pictures part, where they're not responsive for mobile devices

You make images responsive with CSS:

img {

height: auto !important;

width: auto !important;

max-width: 100%;

}

But that won't work for you. Part of becoming a coder is using tools like Chrome's Developer Tools to analyze how something works. The slider you are using does not employ embedded images. An embedded image is an image that actually exists in your markup and is searchable. A lot of the open source plugins found on the web are made by coders who have learned to customize the mother JavaScript, but cannot really write a script from scratch. So, your plugin is actually rendering a background image. In order to make a background image responsive, you must make its physical container responsive and then either set the background to CSS cover/contain or manipulate the size of the container programmatically. I'm afraid this is a lot more complicated than you might think .

I could give you the CSS code to do this, but the script would need to be heavily modified as well. I'm sure Osgood could help you, but the important thing if you really want to learn to code is that you are taught how to do this, rather than given the code. Learning to write JavaScript is not a simple thing. If you use a free plugin you are kind of at the mercy of the script author (sometimes a true author does not even exist, because what's used are stubs, which are helper scripts to call functions in a library). Otherwise you're going to have problems in the future.

Se e if you can grab Osgood's attention to see if he is willing to help you. If he doesn't have the time to teach you, then feel free to contact me and I'll provide you with a UI for Dreamweaver that can get the job done for you.

Either way, best of luck to you.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 21, 2018 Nov 21, 2018

Copy link to clipboard

Copied

The idea of using background images is that they work better in circumstances where you want to use them to 'cover' the complete screen. At some point i.e., when you get to mobile size they won't cover the screen without becoming distorted if they are 'inline' images, so a 'section' of the background-image is shown to cover the screen which keeps the image from becoming distorted BUT if you don't want to do that then you can use the images 'inline' - choose what images you use wisely for desktop so they are much higher than the screen, this allows the height of the image to be full depth of the screen and the width will just be what the width is (auto). Once you get to mobile size then the images wont be the depth of the screen any longer they will just become the depth of the original image in relationship to the mobile device being viewed on, just like the ones in the example url you provided function.

I've altered the code (see below) to allow that to happen and now you have 'inline' images instead of background images being sourced from an array of image links. So where you see this in the code - <img src="https://source.unsplash.com/random/?nature" alt="Nature"> you can alter that to your own images - <img src="images/image_1.jpg" alt="Image Description"> (where 'images' is the name of the folder in which your images reside in your website folder).

I would advise that you take Al up on his offer to review his extension at no cost to yourself, its a win win sitiuation. You may find it easier to implement but I'd also advise you to continue to learn to produce some coding and understand how things work. I dont think there is anything wrong with using extensions as long as you dont become totally depended on them and then can't therefore troubleshoot anything in instances where an extension may not be sufficient for what you require, that could be something ridiculously simple like wrapping a bit of text in a span tag to something much more complex. You'd be surprised how many can't perform the most simplest of coding tasks which are probably the most used when constructing a website.

<!DOCTYPE html>

<html lang="en" >

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

<title>Vue-Swiper</title>

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>

<script src='https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/js/swiper.js'></script>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">

<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/css/swiper.css'>

<style>

body {

margin: 0;

background-color: #000;

}

* {

box-sizing: border-box;

}

.swiper-container {

height: 100vh;

width: 100vw;

text-align: center;

}

@media screen and (max-width: 768px) {

.swiper-slide {

width: 100%;

}

}

img {

max-height: 100%;

max-width: 100%;

}

.swiper-button-prev, .swiper-button-next {

display: flex;

justify-content: center;

background-image: none!important;

color: #fff;

font-size: 35px;

height: auto!important;

}

@media screen and (max-width: 768px) {

.swiper-button-prev {

top: 100px;

background-color: #000;

border-radius: 4px;

padding: 0 9px 0 5px;

}

.swiper-button-next {

top: 100px;

background-color: #000;

border-radius: 4px;

padding: 0 5px 0 9px;

}

}

.caption {

color: white;

}

</style>

</head>

<body >

<div id="app">

<div class="swiper-container">

<div class="swiper-wrapper">

<div class="swiper-slide"><img src="https://source.unsplash.com/random/?nature" alt="Nature"></div>

<div class="swiper-slide"><img src="https://source.unsplash.com/random/?food" alt="Food"></div>

<div class="swiper-slide"><img src="https://source.unsplash.com/random/?business" alt="Business"></div>

<div class="swiper-slide"><img src="https://source.unsplash.com/random/?fashion" alt="Fashion"></div>

<div class="swiper-slide"><img src="https://source.unsplash.com/random/?animal" alt="Animal"></div>

</div>

<div class="swiper-button-prev"><i class="fa fa-angle-left"></i></div>

<div class="swiper-button-next"><i class="fa fa-angle-right"></i></div>

</div>

</div>

<!-- end app -->

<script >

var app = new Vue({

el: '#app',

data: {

infinite: true

},

mounted: function () {

var mySwiper = new Swiper ('.swiper-container', {

centeredSlides:true,

direction: 'horizontal',

loop: this.infinite,

nextButton: '.swiper-button-next',

prevButton: '.swiper-button-prev',

});

}

})

</script>

</body>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 21, 2018 Nov 21, 2018

Copy link to clipboard

Copied

There is no point in including vue.js for a swiper with static slides. You can render it on page load, no need to be mounted via vue...

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 21, 2018 Nov 21, 2018

Copy link to clipboard

Copied

williamj31276244  wrote

There is no point in including vue.js for a swiper with static slides. You can render it on page load, no need to be mounted via vue...

Of course you can use alternative workflows..........please go ahead and supply your version.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 21, 2018 Nov 21, 2018

Copy link to clipboard

Copied

It's pretty well explained how to initialize it: https://idangero.us/swiper/api/#initialize

You do not need to include a whole js framework for a pure javascript plugin, which can be initialized on load and run with static content.

You maybe don't get the idea of using front end frameworks like vue.js - it's not just including it on the page because it is trendy, especially when it does nothing on the page.

The swiper can be initialized as ANY other js function on the page....

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines