Simple Tabs Toggler Component In Pure CSS | Tabsy

Tabsy is a simple and lightweight tabs toggler switching component written in pure CSS with no dependencies.

framer motion animated tabs, react animated tabs component, react tabs component, tab content animation fadein, tab animation css, tailwind tabs animation

jQuery Plugin To Make Bootstrap 4 Tabs Scroll Horizontally

How to make use of it:

1. Download and import “tabsy.css” into an HTML page.

<link href="tabsy.css" rel="stylesheet" type="text/css">

2. Create tab navigation for split content using radio inputs and label elements like these:

<div class="tabsy">
  <input type="radio" id="tab1" name="tab" checked>
  <label class="tabButton" for="tab1">Tab One</label>
  
  <div class="tab">
    <div class="content">
      Tab 1
    </div>
  </div>
  <input type="radio" id="tab2" name="tab">
  <label class="tabButton" for="tab2">Tab Two</label>
  
  <div class="tab">
    <div class="content">
      Tab 2
    </div>
  </div>
  <input type="radio" id="tab3" name="tab">
  <label class="tabButton" for="tab3">Tab Three</label>
  
  <div class="tab">
    <div class="content">
      Tab 3
    </div>
  </div>
</div>

3. Customizing the tabs component in SASS:

// Base Colors
$tabActiveBgColor: #fff; 
$tabActiveTextColor: #5a5243;
$tabNectiveBgColor: #5a5243; 
$tabNectiveTextColor: #F5F5F5; 
// Breakpoint
$breakpoint: 768px;
// Transition
$transitionSpeed: 200ms;

Animated Tabs Component, Tabsy CSS Plugin/Github


See Demo And Download

Official Website(robiveli): Click Here

This superior jQuery/javascript plugin is developed by robiveli. For extra advanced usage, please go to the official website.

Related Posts

Bootstrap-Steps

A Simple Bootstrap 4 Steps Plugin | Bootstrap Steps

Bootstrap Steps plugin is simple and supports mobile clients. The CSS extension for Bootstrap 4 allows you to create a responsive, SEO-friendly step bar to showcase the…

Vertical-3-Dot-Context-Menu

Simple and Lightweight Vertical 3-Dot Context Menu

The 3-dot Context Menu allows for a simple and lightweight implementation to show 3 vertical dots allowing the user to click and show a menu. Below is…

Sticky-Element-Plugin

Highly Customizable Sticky Element Plugin With JavaScript | HC-Sticky

Sticky JS Library is a JavaScript library that makes any element on your page visible while scrolling. Dependency is free, but it also works as a jQuery…

web-x-spreadsheet

A Web-Based Spreadsheet In Pure JavaScript | x-spreadsheet

JavaScript Spreadsheet Library – x-spreadsheet is a pure JS library used to create an Excel-style spreadsheet and Google Sheets for the web. Features Undo & Redo Paint…

Horizontal-Timeline

Create a Horizontal Timeline Using jQuery plugin | timeline.js

jQuery Timeline, you can easily create two types of horizontal timelines with this plugin. Timeline.js helps you display horizontal timelines, browser, responsive bar, and point/line style from…

Bootstrap-5-Support-for-Internet-Explorer-11

Bootstrap 5 Support for Internet Explorer 11 | BS5 IE

Bootstrap 5 drops support for Internet Explorer 11, but you can add support again simply by adding a CSS file and a few multiple JavaScript packages. What…