UI Access

PREV
NEXT

Access this extension through HTML5 Banner Rotator button on the FD24 category of the Insert Panel (Window > Insert). It is also accessible by selecting Insert > FlashDevelopment24 > HTML5 Banner Rotator.

Inserting object

Open Dreamweaver, open document in which you want to place banner. Banner rotator can be inserted in page through the menu option "Insert -> FlashDevelopment24 -> HTML5 Banner Rotator" or the Insert Bar. After you choose "HTML5 Banner Rotator" you will see a dialog window where you have to define the destination folder. There (in this folder) will be created folder 'banner_files' and inside this folder will be placed files: script files, banner-rotator.css and images. Links to files jquery.banner-rotator.js and banner-rotator.css will be automatically added into tag <head>:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script type="text/javascript" src="banner_files/jquery.banner-rotator.min.js"></script> <link rel="stylesheet" type="text/css" href="banner_files/banner-rotator.css" />

Also in tag <head> will be automatically added script, which is initializing the component:

<script type="text/javascript">
  $(window).load(function() {
    $("#JQBannerRotator1").fdBannerRotator({keyboardEnabled:true,
    frameShadowEnabled:true,
    slideWidth:618,
    slideHeight:246,
    slideTransition:{type:"fade",duration:300,easing:"easeOutQuad"},
    slideDuration:3000,
    slideAutoplay:true,
    slidePauseOnHover:true,
    timerPosition:"top",
    timerVisible:true,
    captionAnimationSpeed:500,
    captionAnimationEasing:"easeOutQuad",
    controlDirectionEnbled:true,
    controlDirectionHide:true,
    controlPlayEnabled:true,
    navigationEnabled:true,
    navigationPositionTop:285,
    navigationPositionMargin:0,
    navigationAlign:"center",
    navigationThumbEnabled:true,
    navigationThumbServerScipt:"",
    navigationThumbSearch:".jpg",
    navigationThumbReplace:"_thumb.jpg",
    navigationThumbWidth:150,
    navigationThumbHeight:65,
    navigationThumbAnimationSpeed:200,
    navigationThumbAnimationEasing:"easeOutQuad"});
  });
</script>

HTML5 Banner Rotator is placed in a special tag <div id="JQBannerRotator1" class="JQBannerRotator">...</div>. More information about banner structure you can find in section 'Structure of the component'.

That’s all! In the design view of your web page you will see new HTML5 Banner Rotator.