JSFiddle - React, Tailwind, and code Playground

by s4ty

HTML

<head>
    <script type="text/javascript" src="http://s4ty-testarea.s4.ohost.de/jQuery-board/js/jquery-1.7.2.min.js"></script>
    <script>
/**
 * @license 
 * jQuery Tools @VERSION Scrollable - New wave UI design
 * 
 * NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE.
 * 
 * http://flowplayer.org/tools/scrollable.html
 *
 * Since: March 2008
 * Date: @DATE 
 */
(function($) { 

    // static constructs
    $.tools = $.tools || {version: '@VERSION'};

    $.tools.scrollable = {

        conf: {    
            activeClass: 'active',
            circular: false,
            clonedClass: 'cloned',
            disabledClass: 'disabled',
            easing: 'swing',
            initialIndex: 0,
            item: '> *',
            items: '.items',
            keyboard: true,
            mousewheel: false,
            next: '.next',   
            prev: '.prev', 
            size: 1,
            speed: 400,
            vertical: false,
            touch: true,
            wheelSpeed: 0
        } 
    };

    // get hidden element's width or height even though it's hidden
    function dim(el, key) {
        var v = parseInt(el.css(key), 10);
        if (v) { return v; }
        var s = el[0].currentStyle; 
        return s && s.width && parseInt(s.width, 10);    
    }

    function find(root, query) { 
        var el = $(query);
        return el.length < 2 ? el : root.parent().find(query);
    }

    var current;        

    // constructor
    function Scrollable(root, conf) {   

        // current instance
        var self = this, 
             fire = root.add(self),
             itemWrap = root.children(),
             index = 0,
             vertical = conf.vertical;

        if (!current) { current = self; } 
        if (itemWrap.length > 1) { itemWrap = $(conf.items, root); }


        // in this version circular not supported when size > 1
        if (conf.size > 1) { conf.circular = false; } 

        // methods
        $.extend(self, {

            getConf:...