Plugin For A Carousel-Style Content Bar With jQuery | carouselTicker

jQuery plugin carouselTicker is a lightweight and flexible jQuery plugin that lets you create a modern, semantic pie bar powered by CSS and for endless scrolling for an unordered list of Html content with drag/swipe and pauses on scroll support.

Supports: Chrome, Firefox, Safari, Opera, IE7, IE8, IE9, IE10, and IE11.

carouselTicker v1.0.0:

  • Responsive – adapts to any device
  • Landscape and portrait mode
  • Full callback API and general methods
  • Small file size
  • Browser support: Firefox, Chrome, Safari, iOS, Android, and IE7 +
  • Tons of configuration options

How to make use of it:

1. Load the jQuery library and the jQuery carousel plugin on your HTML page.

<link rel="stylesheet" href="/path/to/stylesheets/carouselTicker.css" />
<script src="/path/to/cdn/jquery.min.js"></script>
<script src="/path/to/javascripts/jquery.carousel-ticker.js"></script> 

2. Create a listing of ticker objects and wrap them right into a DIV container.

<div class="carouselTicker">
  <ul class="carouselTicker__list">
    <li class="carouselTicker__item">1</li>
    <li class="carouselTicker__item">2</li>
    <li class="carouselTicker__item">3</li>
    <li class="carouselTicker__item">4</li>
    <li class="carouselTicker__item">5</li>
    <li class="carouselTicker__item">6</li>
    <li class="carouselTicker__item">7</li>
    <li class="carouselTicker__item">8</li>
    <li class="carouselTicker__item">9</li>
    <li class="carouselTicker__item">10</li>
    <li class="carouselTicker__item">11</li>
    <li class="carouselTicker__item">12</li>
    <li class="carouselTicker__item">13</li>
    <li class="carouselTicker__item">14</li>
    <li class="carouselTicker__item">15</li>
  </ul>
</div>

3. Style the carousel ticker.

.carouselTicker {
  overflow: hidden;
  float: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.carouselTicker__list {
  ...
}

.carouselTicker__item {
  ...
}

4. Call the carouselTicker() function on the container to allow the plugin.

$(".carouselTicker").carouselTicker();

5. Adjust the scrolling speed and orientation within the JavaScript.

$(".carouselTicker").carouselTicker({

  // animation speed
  speed: 1,

  // animation delay
  delay: 30,

  // or 'next'
  direction: "prev",

  // or 'vertical'
  mode: "horizontal",

  // callback
  onCarouselTickerLoad: function () {},

});

6. API strategies.

// destroy 
$(".carouselTicker").carouselTicker().destructor();

// reload 
$(".carouselTicker").carouselTicker().reloadCarouselTicker();

// resize
$(".carouselTicker").carouselTicker().resizeTicker();

// stop 
$(".carouselTicker").carouselTicker().stop();

// run
$(".carouselTicker").carouselTicker().run();

7. Trigger a function after the carousel has loaded.

$(".carouselTicker").carouselTicker('onCarouselTickerLoad':  function() {
  // do something
});

See Demo And Download

Official Website(yuriyberezovskiy): Click Here

This superior jQuery/javascript plugin is developed by yuriyberezovskiy. For extra Advanced Usage, please go to the official website.

Related Posts

HStack-and-VStack-in-CSS

CSS Layout Components Horizontal/Vertical Stack | HStack and VStack

HStack and VStack in CSS – CSS layout components that (basically) stack anything horizontally and vertically. A pure CSS library that makes it easy to stack elements…

Floating-Whatsapp-Chat-Button

How to Add Floating Whatsapp Chat Button In HTML | venom-button

Venom Button is a very simple plugin for the jQuery floating WhatsApp button. Adds a floating button to your site that calls WhatsApp Click to Chat API. It will automatically start the WhatsApp…

Data-Table-Generator-Tabulator

Interactive Data Table Generator with JS/jQuery and JSON | Tabulator

Tabulator allows you to create interactive tables in seconds from any HTML Table, JavaScript array, AJAX data source, or JSON format data. Just include the library in your…

alert-confirm-prompt-attention-js

Simple Alert, Confirm, Prompt Popup Using Vanilla JavaScript Library | attention.js

JavaScript provides various built-in functionality to display popup messages for different purposes. Attention JS is a vanillaJS plugin used to create a custom alert, confirm, or Prompt…

Bootstrap-4-Sidebar-Menu-Responsive-Template

Bootstrap 4 Sidebar Menu Responsive Template | MDB

Bootstrap Side Navbar – Responsive sidebar template based on the Bootstrap 4 framework. An easy-to-use, totally responsive, Google Material Design impressed aspect navigation for modern web app…

Bootstrap-4-Toast-Notification-Plugin

Lightweight Bootstrap 4 Toast Notification Plugin | BS4 Advanced Toast

A lightweight Bootstrap 4 Toast Notification plugin integrated with JS/jQuery. bs4-toast.js is a JavaScript library that enhances the native Bootstrap toast component with icons, buttons, callbacks, and…

Leave a Reply

Your email address will not be published. Required fields are marked *