Giter VIP home page Giter VIP logo

jquery-apply-classes's Introduction

jQuery Apply Classes

##Summary

Apply a set of classes to a jquery element or set. Useful for mixing up ordering on older browsers, rainbow colouring.

##Use cases

Sometimes you want to apply a set of classes over an element set, be it for ordering or colouring. I created this tool when I was given the requirement to "Make the borders on the elements rainbow and maintain this colouring on each page load".

In order to accomplish this I opted to use classes for the older browsers and nth-child selectors for today. Hope it is useful for ya!

##Usage

eg.

$('.section__header').applyClasses({
    classes:[
    	'position__level-1', 
    	'position__level-2'
	]
});

The above takes the .section__header object and loops through it, applying in sequence the classes outlined in order then starting again from the start of the array eg:

<div class="section__header">Test</div>
<div class="section__header">Test</div>
<div class="section__header">Test</div>
<div class="section__header">Test</div>

Will now look like:

<div class="section__header position__level-1">Test</div>
<div class="section__header position__level-2">Test</div>
<div class="section__header position__level-1">Test</div>
<div class="section__header position__level-2">Test</div>

##Options

classes: An array of classes to be applied
avoid: Specify a selector to be avoided as part of the looping. eg. '.section__header--ignore' random: Set to true to apply the classes in a random order over your page.

jquery-apply-classes's People

Contributors

thomas-gordon avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.