Full Width Animated Layers 002
Please follow the instructions:
paradise
folder to your server. In this folder you will find the following sub folders containing all of the slides content:<head>
section and JavaScript in <body>
section:<linkhref="css/paradise_slider_min.css"rel="stylesheet"media="all">
<scriptsrc="js/jquery.touchSwipe.min.js"></script>
<scriptsrc="js/paradise_slider_min.js"></script>
After attaching all of the above files, insert following HTML to the <body>
section. This HTML defines your slider content.
<body><!-- Paradise Slider --><divid="fw_al_002"class="carousel slide swipe_x ps_easeInOutSine"data-ride="carousel"data-pause="hover" data-interval="5000"data-duration="2500"><!-- Wrapper For Slides --><divclass="carousel-inner"role="listbox"><!-- First Slide --><divclass="carousel-item active"><!-- Slide Background --><imgsrc="images/fw_al_002_01.jpg"alt="fw_al_002_01"/><!-- Slide Text Layer --><divclass="fw_al_002_slide"><h1data-animation="animated fadeInRight"><spandata-animation="animated fadeInRight">turpi</span> lorem posuere</h1><pdata-animation="animated fadeInRight">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam nibh. Nunc varius facilisis eros. Sed erat. In in velit quis arcu ornare laoreet curabitur.</p><ahref="#"data-animation="animated fadeInRight">qui nun</a></div></div><!-- End of Slide --><!-- Second Slide --><divclass="carousel-item"><!-- Slide Background --><imgsrc="images/fw_al_002_02.jpg"alt="fw_al_002_02"/><!-- Slide Text Layer --><divclass="fw_al_002_slide fw_al_002_slide_right"><h1data-animation="animated fadeInRight"><spandata-animation="animated fadeInRight">turpi</span> lorem posuere</h1><pdata-animation="animated fadeInRight">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam nibh. Nunc varius facilisis eros. Sed erat. In in velit quis arcu ornare laoreet curabitur.</p><ahref="#"data-animation="animated fadeInRight">qui nun</a></div></div><!-- End of Slide --><!-- Third Slide --><divclass="carousel-item"><!-- Slide Background --><imgsrc="images/fw_al_002_03.jpg"alt="fw_al_002_03"/><!-- Slide Text Layer --><divclass="fw_al_002_slide"><h1data-animation="animated fadeInRight"><spandata-animation="animated fadeInRight">turpi</span> lorem posuere</h1><pdata-animation="animated fadeInRight">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam nibh. Nunc varius facilisis eros. Sed erat. In in velit quis arcu ornare laoreet curabitur.</p><ahref="#"data-animation="animated fadeInRight">qui nun</a></div></div><!-- End of Slide --></div><!-- End of Wrapper For Slides --></div><!--End Paradise Slider--></body>
Bootstrap Carousel
is the foundation of this slider. The main structure of Bootstrap Carousel
which is used in this template is as following:
<divid="myCarousel"class="carousel slide"data-ride="carousel"data-pause="hover"data-interval="5000"><!-- Wrapper For Slides --><divclass="carousel-inner"role="listbox"><!-- Slide --><divclass="carousel-item"><imgsrc="image.jpg"alt="image"/></div></div</div>
We have assigned our own id to the first <div>
that is fw_al_002
(FullWidth_AnimatedLayers_002)
The content for the slide is as following:
<div>
element which has carousel-item
as class name show a single slide.<img>
element in the slide specifies the slider background image.<div>
element which has fw_al_002_slide
as class name for Text Layer<!-- Slide --><divclass="carousel-item"><!-- Slide Background --><imgsrc="images/fw_al_002_02.jpg"alt="fw_al_002_02"/><!-- Slide Text Layer --><divclass="fw_al_002_slide"><h1><span>turpi</span>lorem posuere</h1><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam nibh. Nunc varius facilisis eros. Sed erat. In in velit quis arcu ornare laoreet curabitur.</p><ahref="#">qui nun</a></div></div><!-- End of Slide -->
In this template we have used following components for Text Layer
<h1>
<span>
<p>
<a>
active
class needs to be added to the first slide. Otherwise, the carousel will not be visible.We have used only three of our own classes and one id in this template, that control and change the whole slider.
#fw_al_002
: Describe the Slider's Unique Id..swipe_x
: This class enables horizontal swipe function.ps_easeInOutSine
: This class enables Transition Timing Function for Slide Effect.fw_al_002_slide
: Enable Styles of Text Layer Portion.fw_al_002_slide_right
: To show right side textfw_al
Stands for " Full Width Animated Layers " and 002
means " Version 002 "