STYLE OPTIONS

10 Predefined Color Schemes

CHOOSE YOUR COLOR SKIN


CHOOSE YOUR LAYOUT STYLE

Patterns for Boxed Version

Images for Boxed Version


×

Revolution Slider

Sample Boxeddocumentation exmaple

This example is provided by the vendor. This is also included on purchased version!
You can easy edit any example using caption & transition editor.
Revolution Slider - one of the most powerful available sliders!


  • Powerful
    Multipurpose
    Atropos Multipurpose Template, now offering you
    over 110 html pages fully customizable and very
    easy to use! Lifetime free update!
    Read more...
    110+
    Html Pages
    Fully Responsive
    Customizable Pages
  • FEATURED
    Best With Atropos
    You can easily add
    Vimeo & Youtube Videos
    to your Slides
    HTML5
    CSS3
  • ATROPOS

    MULTIPURPOSE TEMPLATE

Create in the Document some Slider Markups like here:

<div class="tp-banner-container">
	<div class="tp-banner" >
		<ul>
			<!-- SLIDE  -->
			<li data-transition="fade" data-slotamount="7" data-masterspeed="1500" >
				<!-- MAIN IMAGE -->
				<img src="images/slidebg1.jpg"  alt="slidebg1"  data-bgfit="cover" data-bgposition="left top" data-bgrepeat="no-repeat">
				<!-- LAYERS -->
				<!-- LAYER NR. 1 -->
				<div class="tp-caption lightgrey_divider skewfromrightshort fadeout"
					data-x="85"
					data-y="224"
					data-speed="500"
					data-start="1200"
					data-easing="Power4.easeOut">My Caption
				</div>
				...

			</li>
			<!-- SLIDE  -->
			<li data-transition="zoomout" data-slotamount="7" data-masterspeed="1000" >
				<!-- MAIN IMAGE -->
				<img src="images/darkblurbg.jpg"  alt="darkblurbg"  data-bgfit="cover" data-bgposition="left top" data-bgrepeat="no-repeat">
				<!-- LAYERS -->
				<!-- LAYER NR. 1 -->
				<div class="tp-caption lightgrey_divider skewfromrightshort fadeout"
					data-x="85"
					data-y="224"
					data-speed="500"
					data-start="1200"
					data-easing="Power4.easeOut">My Caption
				</div>
				...
			</li>
			....
		</ul>
	</div>
</div>

Initialise the Plugin somewhere in the Body Footer:

<script type="text/javascript">
	jQuery(document).ready(function() {
		   jQuery('.tp-banner').revolution(
			{
				delay:9000,
				startwidth:1170,
				startheight:500,
				hideThumbs:10
			});
	});
</script>