Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
var RevosliderInit = function () {
2
 
3
    return {
4
        initRevoSlider: function () {
5
                  jQuery('.fullwidthabnner').show().revolution({
6
                      delay:2000,
7
                      startheight:417,
8
                      startwidth:1150,
9
 
10
                      hideThumbs:10,
11
 
12
                      thumbWidth:100,                         // Thumb With and Height and Amount (only if navigation Tyope set to thumb !)
13
                      thumbHeight:50,
14
                      thumbAmount:5,
15
 
16
                      navigationType:"bullet",                // bullet, thumb, none
17
                      navigationArrows:"solo",                // nexttobullets, solo (old name verticalcentered), none
18
 
19
                      navigationStyle:"round",                // round,square,navbar,round-old,square-old,navbar-old, or any from the list in the docu (choose between 50+ different item), custom
20
 
21
                      navigationHAlign:"center",              // Vertical Align top,center,bottom
22
                      navigationVAlign:"bottom",              // Horizontal Align left,center,right
23
                      navigationHOffset:0,
24
                      navigationVOffset:20,
25
 
26
                      soloArrowLeftHalign:"left",
27
                      soloArrowLeftValign:"center",
28
                      soloArrowLeftHOffset:20,
29
                      soloArrowLeftVOffset:0,
30
 
31
                      soloArrowRightHalign:"right",
32
                      soloArrowRightValign:"center",
33
                      soloArrowRightHOffset:20,
34
                      soloArrowRightVOffset:0,
35
 
36
                      touchenabled:"on",                      // Enable Swipe Function : on/off
37
                      onHoverStop:"on",                       // Stop Banner Timet at Hover on Slide on/off
38
 
39
                      stopAtSlide:-1,
40
                      stopAfterLoops:-1,
41
 
42
                      hideCaptionAtLimit:0,         // It Defines if a caption should be shown under a Screen Resolution ( Basod on The Width of Browser)
43
                      hideAllCaptionAtLilmit:0,       // Hide all The Captions if Width of Browser is less then this value
44
                      hideSliderAtLimit:0,          // Hide the whole slider, and stop also functions if Width of Browser is less than this value
45
 
46
                      shadow:1,                               //0 = no Shadow, 1,2,3 = 3 Different Art of Shadows  (No Shadow in Fullwidth Version !)
47
                      fullWidth:"on"                          // Turns On or Off the Fullwidth Image Centering in FullWidth Modus
48
                  });
49
        }
50
    };
51
 
52
}();