Once the Banner and Slide(s) are saved, click Test in the Banner record. The screen should go to the Home tab and display your banner as designed.
Once the banner looks good and ready to deploy, click View Code. The code will download in your browser (methods vary by browser) for viewing. Open this file and copy-paste the code to the desired location for your banner.
There is a HEAD area code, and there is BODY area code (different colors below).
At this point, ensure the assets (image, js files, etc.) have been published to the target location.
Here is an example of code:
<!-- HEAD AREA -->
<style>
.TB_Wrapper {
max-width: 100%;
height: 350px;
}
</style>
<link rel="stylesheet" href="banner/style.css" />
<script src="banner/jquery-1.7.1.min.js"></script>
<script src="banner/jquery.easing.1.3.min.js"></script>
<script src="banner/trans-banner.min.js"></script>
<script>
jQuery(function($){
$('.TB_Wrapper').TransBanner({
});
});
</script>
<!-- BODY AREA -->
<div class="TB_Wrapper"><!--Start of Slides -->
<div class="Slides">
<div class="Slide" >
<a target="" href=""><img src="http://alphatogo.com/images/header.jpg" alt="img1" /></a>
<div>
this is tsome test
</div>
</div>
<div class="Slide" >
<a target="_blank" href="https://google.com"><img src="banner/images/image2.jpg" alt="img1" /></a>
<div>
more text
</div>
</div>
</div>
</div>