I use this topic to ask a question about using a different slider. I am interested in implementing this slider:
demo-->
http://iprodev.com/iview/ because I'm absolutely interested in the features it has to offer.
We have the instructions to implement it on our website detailed here:
Insert in the head section of the page
- Code: Select all
<link rel="stylesheet" href="iview.css" type="text/css" media="screen" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>
<script src="raphael-min.js" type="text/javascript"></script>
<script src="jquery.easing.js" type="text/javascript"></script>
<script src="iview.packed.js" type="text/javascript"></script>
where into the storebox template should I insert the scripts?
then "insert into body section the slide or slides":
- Code: Select all
<div id="iview">
<!-- Slide 1 -->
<div data-iview:thumbnail="photos/photo1_thumb.jpg" data-iview:image="photos/photo1.jpg"></div>
<!-- Slide 2 -->
<div data-iview:thumbnail="photos/photo2_thumb.jpg" data-iview:image="photos/photo2.jpg"></div>
</div>
we can add a caption to the slides with a div class:
- Code: Select all
<div id="iview">
<!-- Slide 1 -->
<div data-iview:thumbnail="photos/photo1_thumb.jpg" data-iview:image="photos/photo1.jpg">
<!-- Caption -->
<div class="iview-caption" data-x="0" data-y="0" data-width="400" data-height="300" data-transition="wipeRight" data-speed="700"><h3>The Responsive Caption</h3>This is the product that you <b><i>all have been waiting for</b></i>!<br><br>Customize this slider with just a little HTML and CSS to your very needs. Give each slider some captions to transport your message.<br><br>All in all it works on every browser (including IE6 / 7 / 8) and on iOS and Android devices!</div>
</div>
<!-- Slide 2 -->
<div data-iview:thumbnail="photos/photo2_thumb.jpg" data-iview:image="photos/photo2.jpg">
<!-- Caption -->
<div class="iview-caption" data-x="70" data-y="70" data-transition="expandLeft">Caption Description</div>
</div>
</div>
"By adding one more html5 data-attribute to the "iview-caption" div you can decide the effect of the caption. The possible effects are: "wipeLeft", "wipeRight", "wipeTop", "wipeBottom", "expandLeft", "expandRight", "expandTop", "expandBottom", "fade".
<div class="iview-caption" data-transition="fade">Caption description</div>
A caption can have a data-transition "fade", in this case it will be displayed with a fading effect".
This slider is awesome, isn't it?
I've been searching into storebox the place to insert the slider and position it on maintop position with the module position(like I have now in my slider
http://tiendanueva.negre.es/ )
Any help is truly welcome!
Kind Regards,