Aurora Skin / Aurora Transition

We are super happy with the latest upgrade.
John Doe - Max Company
Excelent work, thank you!
Jesse Doe - Lorem Industries
We are super happy with the latest upgrade.
John Doe - Max Company
Excelent work, thank you!
Jesse Doe - Lorem Industries
We are super happy with the latest upgrade.
John Doe - Max Company
Excelent work, thank you!
Jesse Doe - Lorem Industries
We are super happy with the latest upgrade.
John Doe - Max Company
Excelent work, thank you!
Jesse Doe - Lorem Industries

Default Skin / Fade Transition

Best Testiomnial Rotator I have ever seen, 100% satisfied. Thank you!
John Doe
Awesome response time and quality service. Very satisfied!
John Smith
Really takes care of our customers needs! Our presentation site got a awesome facelift.
John Doe

Pattern Skin / Fade Transition

Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
John Doe // General Manager
Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui lorem ipsiumus.
John Smith // Central Executive

Avatar Skin / No Transition

Arrowbox Skin / No Transition

Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.
John Doe // General Manager
Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat.
Jenna Doe // General Executive
Phasellus ultrices nulla quis nibh. Quisque a lectus. Donec consectetuer ligula vulputate sem tristique cursus. Nam nulla quam, gravida non, commodo a, sodales sit amet, nisi.
Denis Woo // Sub Executive

Clean Skin / Blur Transition

Best jQuery Lightbox Gallery I have ever seen, 100% satisfied. Thank you! HiHI!
John Doe
Best jQuery Lightbox Gallery I have ever seen, 100% satisfied. Thank you! Haha!
John Doe

Simple Skin / Fade Transition

Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
John Doe - Max Company
Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui lorem ipsiumus.
Jesse Doe - Lorem Industries

Features

Install

Note that hidden parts will appear in the final documentation on purchase

In order to install this component in your html page you need to:

  1. unpack the download package, open the source folder
  2. copy the folder /testimonialrotator into your project folder
  3. open your html file and insert this inside your <head> tag

    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

    <link rel='stylesheet' type="text/css" href="testimonialrotator/testimonialrotator.css"/>
    <script src="testimonialrotator/testimonialrotator.js" type="text/javascript"></script>
    <script src="testimonialrotator/aux/textshadow.js" type="text/javascript"></script>

  4. insert this inside your <body> tag where you want the gallery to appear

    <div class="hidden skin_default" id="tr1" style="width:100%;">
    <div class="testimonial-tobe">
    <div class="testtext">Best jQuery Lightbox Gallery I have ever seen, 100% satisfied. Thank you!
    </div>
    <div class="testauthor">John Doe
    </div>
    </div>
    <div class="testimonial-tobe">
    <div class="testtext">Awesome response time and quality service. Very satisfied!
    </div>
    <div class="testauthor">John Smith
    </div>
    </div>
    <div class="testimonial-tobe">
    <div class="testtext">Really takes care of our customers needs! Our presentation site got a awesome facelift.
    </div>
    <div class="testauthor">John Doe
    </div>
    </div>
    </div>

    • first bolded part - you can choose a skin by modifiying this class ( check Customize It section )
    • second bolded part - you can choose a width ( and also height ) by modifying this value
  5. insert this inside just before the ending of the </body>

    <script>
    jQuery(document).ready(function($){
    $("#tr1").hidden({
    hidden:3
    });
    })
    </script>

    • notice the id - tr1 - is the same as the block you want to transform
  6. All done!