What?s inside download package?+-
The download package includes:
- Uncompressed Master Slider JS files.
- Templates.
- Skins ( css and psd files ).
- Documentation.
- Transition Gallery.
- Quickstart folder.
- Codecanyon License file.
The download package includes:
Yes, after purchasing you will be able to access to our dedicated support website and you can ask your questions in support forums, our support staffs are there for you.
No, you need to buy one regular license for each website, you can find more information about the?licenses here ?
Yes, It?s possible but with CodeCanyon Extended License, you can find more information about the?licenses here ?
No, we don’t recommend it.
Yes, it?s possible. You can have as many instances you want with different skins and templates in one page.
Yes, you can disable it in slider setup method.
1- Include the required files each file only once.
2- Copy and past the slider HTML Markup for each slider where you want to have slider but With different id.
For example first slider div element with “masterslider1” id:
<div class="master-slider ms-skin-default" id="masterslider1"> </div>
and second slider with?”masterslider2″ id:
<div class="master-slider ms-skin-default" id="masterslider2"> </div>
3- Create the JavaScript code for each slider with slider’s id and different instance.?and based on the slider’s id now we have to JavaScript code for them.
the JavaScript code for Slider one with the id of “masterslider1”
var slider = new MasterSlider(); slider.setup('masterslider1' , { width:800, // slider standard width height:350, // slider standard height space:5 // more slider options goes here... // check slider options section in documentation for more options. }); // adds Arrows navigation control to the slider. slider.control('arrows');
the JavaScript code for Slider one with the id of “masterslider2”
var slider2 = new MasterSlider(); slider2.setup('masterslider2' , { width:800, // slider standard width height:350, // slider standard height space:5 // more slider options goes here... // check slider options section in documentation for more options. }); // adds Arrows navigation control to the slider. slider2.control('arrows');
Unfortunately it is not possible to create a slider in Master Slider WordPress version and export it for jQuery version; plus, there is no visual tool for creating slider in jQuery version. However, we have plenty of sample sliders in download package which help you to kick start your slider.