Support Center

Slide

DIXIT uses Slider Slide Revolution – A premium jQuery plugin by ThemePunch. Everything you need to use the slider is included in the DIXIT skin. There is no module or user interface provided to use the slider and hence basic knowledge of HTML and JavaScript is required. Step by step instructions and video tutorial is provided below.

Sample Markup:


Each slide is made of its own List Item Element <li>. For example, the sample code above has 3 slides. Let’s look at the markup of a single slide from the above sample code.
 
1
2
3
4
5
<p></p>
 
<ul>
 <li></li></ul>


Add Slide:

New slides can be added by creating new List Item Elements <li>. Simply copy the markup starting from <li> tag to the closing </li> tag and paste it at the end. This would add a new slide at the very last. Similarly you can move the <li> … </li> tag to the very beginning to make it the first slide.

Remove Slide:

Simply remove the <li> tag corresponding to the slide you want to remove. Be sure to remove the markup starting from <li> tag to the closing </li> tag.

Slide Options:

There are many options available for slides. We can add these options as attributes to the <li> element.

Here’s an example where we’re using the data-transition attribute to use the fade transition.
 
1
2
<li data-transition="fade"><img alt="Image_4" src="http://demo.mandeeps.com/portals/19/Skins/Dixit/PortalTemplate/img/slider/slide1f.jpg"></li>
<li></li>


Following attributes / options are available:
  • data-transition The appearance transition of this slide
    • Options:  
    • boxslide
    • boxfade
    • slotzoom-horizontal
    • slotslide-horizontal
    • slotfade-horizontal
    • slotzoom-vertical
    • slotslide-vertical
    • slotfade-vertical
    • curtain-1
    • curtain-2
    • curtain-3
    • slideleft
    • slideright
    • slideup
    • slidedown
    • fade
    • random
    • slidehorizontal
    • slidevertical
    • papercut
    • flyin
    • turnoff
    • cube
    • 3dcurtain-vertical
    • 3dcurtain-horizontal

  • data-masterspeed Set the Speed of the Slide Transition. Default 300, min:100 max:2000.

  • data-slotamount The number of slots or boxes the slide is divided into. If you use boxfade, over 7 slots can be juggy.

  • data-link A link on the whole slide pic

  • data-target A link target (like _self or _blank)

  • data-linktoslide If data-link="slide" is set, you can define a slide where to jump in case the image has been clicked.

  • data-delay A new delay value for the Slide. If no delay defined per slide, the delay defined via Options will be used

  • data-thumb An Alternative Source for thumbs. If not defined a copy of the background image will be used in resized form

 

Glad we could be helpful. Thanks for the feedback.

Sorry we couldn't be helpful. Your feedback will help us improve this article.

How helpful was this page?

  
Updated on Tue, 05 Dec 2017 by Khushi Singh

In this section