video 097
01 - Get Started
Note: This documentation Page is only for
video 097
layout. It has no link with other layouts if you want to read their documentation then click
here
Required Files And Folders
Please follow the instructions:
- Please upload the
paradise
folder to your server. In this folder you will find the following sub folders containing all of the slides content:
- js
- css
- fonts
- images
- font-awesome-4.7.0
If your Paradise Slider is placed in a different folder, don’t forget to change the file paths in the upcoming examples!
- This step is very important, because product functionality depends on these files, so please first of all attach these files carefully. CSS in
<head>
section and JavaScript in <body>
section:
- <!-- Google Web Fonts -->
-
<link href="https://fonts.googleapis.com/css?family=Lato:400,900,700" rel="stylesheet" type="text/css">
- <!-- Bootstrap Style Sheet -->
-
<link href="paradise/css/bootstrap.css" rel="stylesheet" media="all">
- <!-- Paradise Slider Main Style Sheet -->
-
<link href="paradise/css/min/paradise_slider_min.css" rel="stylesheet" media="all">
- <!-- jQuery -->
-
<script src="paradise/js/jquery.js"></script>
- <!-- Bootstrap JS -->
-
<script src="paradise/js/bootstrap.js"></script>
- <!-- Touch Swipe -->
-
<script src="paradise/js/touchSwipe.js"></script>
- <!-- Paradise Slider Main JS File -->
-
<script src="paradise/js/paradise_slider_min.js"></script>
Note: All these files are only for video 097
layout only
Or by using CDN
You can load Bootstrap and jQuery files with a single line of code from their official online sources. You don't even have to download or install anything!
- <!-- Bootstrap Style Sheet -->
-
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
- <!-- jQuery -->
-
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
- <!-- Bootstrap JS -->
-
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
mega vs single
You can use Paradise Slider CSS in two ways:
- You can use only one Compressed or UnCompressed CSS file for all
Paradise Slider layouts
. You can find these files in the sub folder min
in main css folder.
- As well as concern to other method, you can use a single CSS file for a single
Paradise Slider layout
. You can find all of these files in the main CSS folder. In this case you can use only video_097.css
file.
HTML Markup
After attaching all of the above files, insert following HTML to the <body>
section. This HTML defines your slider content.
<!-- Paradise Slider -->
<div id="video_097" class="carousel onlinePauseVideo video_097_thumbnails thumb_scroll_y swipe_x"
data-ride="carousel" data-pause="hover" data-interval="false">
<!-- Indicators -->
<ol class="carousel-indicators">
<!-- 1st Indicator -->
<li data-target="#video_097" data-slide-to="0" class="active">
<!-- 1st Indicator Image -->
<img src="paradise/images/video_097_01.jpg" alt="video_097_01">
<span>title of the video</span>
</li>
<!-- 2nd Indicator -->
<li data-target="#video_097" data-slide-to="1">
<!-- 2nd Indicator Image -->
<img src="paradise/images/video_097_02.jpg" alt="video_097_02">
<span>title of the video</span>
</li>
<!-- 3rd Indicator -->
<li data-target="#video_097" data-slide-to="2">
<!-- 3rd Indicator Image -->
<img src="paradise/images/video_097_03.jpg" alt="video_097_03">
<span>title of the video</span>
</li>
<!-- 4th Indicator -->
<li data-target="#video_097" data-slide-to="3">
<!-- 4th Indicator Image -->
<img src="paradise/images/video_097_04.jpg" alt="video_097_04">
<span>title of the video</span>
</li>
</ol> <!-- /Indicators -->
<!-- Wrapper For Slides -->
<div class="carousel-inner" role="listbox">
<!-- First Slide -->
<div class="carousel-item active">
<div class="video_097_youtube">
<iframe src="https://www.youtube.com/embed/ViuDsy7yb8M?showinfo=0" allowfullscreen></iframe>
</div>
</div> <!-- /carousel-item -->
<!-- End of First Slide -->
<!-- Second Slide -->
<div class="carousel-item">
<div class="video_097_youtube">
<iframe src="https://www.youtube.com/embed/gLJdzky63BA?showinfo=0" allowfullscreen></iframe>
</div>
</div> <!-- /carousel-item -->
<!-- End of Second Slide -->
<!-- Third Slide -->
<div class="carousel-item">
<div class="video_097_youtube">
<iframe src="https://www.youtube.com/embed/HeaugHGd1Kw?showinfo=0" allowfullscreen></iframe>
</div>
</div> <!-- /carousel-item -->
<!-- End of Third Slide -->
<!-- Fourth Slide -->
<div class="carousel-item">
<div class="video_097_youtube">
<iframe src="https://www.youtube.com/embed/IwfUnkBfdZ4?showinfo=0" allowfullscreen></iframe>
</div>
</div> <!-- /carousel-item -->
<!-- End of Fourth Slide -->
</div><!-- End of Wrapper For Slides -->
</div> <!--End Paradise Slider-->
Note: The Above example will create Three slides. This HTML Structure is only for video 097
layout
02 - Slider HTML Elements
Bootstrap Carousel Contents
Bootstrap Carousel
is the foundation of this slider. The main structure of Bootstrap Carousel
which is used in this layout is as following:
<div id="myCarousel" class="carousel slide" data-ride="carousel" data-pause="hover" data-interval="7000">
<!-- Wrapper For Slides -->
<div class="carousel-inner" role="listbox">
<!-- Slide -->
<div class="carousel-item">
<img src="image.jpg" alt="image" />
</div>
</div
</div>
Note: Remember if you are using more than one slider on same page the id of all sliders must be different from each others. In the above example myCarousel
is id of slider. But we have assigned our own id to the first <div>
that is video_097
.
Slide Contents
The content for the slide is as following:
- In bootstrap carousel
<div>
element which has carousel-item
as class name show a single slide.
- We have created our own
<div>
element which has video_097_youtube
as class name for Videos. This div contains the iframe of the video.
<!-- Slide -->
<div class="carousel-item">
<div class="video_097_youtube">
<iframe src="https://www.youtube.com/embed/ViuDsy7yb8M?showinfo=0" allowfullscreen></iframe>
</div>
</div> <!-- /carousel-item -->
<!-- End of Slide -->
In this layout we have used following elements
<div>
<img>
<span>
<iframe>
Note: The active
class needs to be added to the first slide. Otherwise, the carousel will not be visible.
03 - Classes
Bootstrap Carousel
.carousel
.carousel-inner
.carousel-item
.active
.carousel-indicators
If you want to know more about bootstrap carousel please click HERE.
paradise slider
We have used following our own classes and id in this layout, that control and change the whole slider.
.swipe_x
: This class enables Horizontal swipe function
#video_097
: Describe the Slider's Unique Id.
.onlinePauseVideo
: This class will stop the video on slide change.
.video_097_youtube
: Enable Styles for videos.
.thumb_scroll_y
: This class enables Vertical scroll function for indicators when indicators cross the height limit of slider. This class will use in only those layouts where indicators will be used.
.video_097_thumbnails
: This class makes thumbnails indicators for the videos of the slider
04 - Fonts
We have used the following Fonts in this layout. You can download these fonts from google fonts
to get the same result of layout
05 - Controls
<!-- Indicators -->
<ol class="carousel-indicators">
<!-- 1st Indicator -->
<li data-target="#video_097" data-slide-to="0" class="active">
<!-- 1st Indicator Image -->
<img src="paradise/images/video_097_01.jpg" alt="video_097_01">
<span>title of the video</span>
</li>
<!-- 2nd Indicator -->
<li data-target="#video_097" data-slide-to="1">
<!-- 2nd Indicator Image -->
<img src="paradise/images/video_097_02.jpg" alt="video_097_02">
<span>title of the video</span>
</li>
<!-- 3rd Indicator -->
<li data-target="#video_097" data-slide-to="2">
<!-- 3rd Indicator Image -->
<img src="paradise/images/video_097_03.jpg" alt="video_097_03">
<span>title of the video</span>
</li>
<!-- 4th Indicator -->
<li data-target="#video_097" data-slide-to="3">
<!-- 4th Indicator Image -->
<img src="paradise/images/video_097_04.jpg" alt="video_097_04">
<span>title of the video</span>
</li>
</ol> <!-- /Indicators -->
In this layout we have used thumbnails of the videos to move from one slide to another. In this layout we have used following components for thumbnails:
.swipe_x
This class enables swipe function. You can controll the slides by dragging the mouse button Horizontally and in touch devices this class also enables the touch control.
If you want to know about other functions click HERE.
.thumb_scroll_y
This class enables Vertical scroll function for indicators when indicators cross the Height limit of slider. This class will use in only those layouts where indicators will be used.
If you want to know about other functions click HERE.
data-pause="hover"
This attribute pauses the slider from sliding through the next slide when the mouse pointer enters the slider, and when the mouse pointer leaves the slider it resumes the sliding.
data-interval="false"
This attribute specifies the delay (in milliseconds) between each slide.
data-duration="2000"
This attribute specifies the duration (in milliseconds) of sliding.
06 - Animation
We have not used any animation in this layout.
07 - Slider Settings
We have created a separate page for slider settings please Click Here
08 - Images
The size of the images that we have used are 840 x 560
in pixels.
3:2
Alway keeps its aspect ratio when you want to change the size of the image
09 - Support
Please do not hesitate if you have any queries about this product. We are always there for your help. You can contact us on this e-mail address szthemes53@gmail.com