GithubHelp home page GithubHelp logo

preloaders's Introduction

SVG Preloaders

This repo contains a small collection of standard preloaders in svg. Do take a peek inside the JS & CSS file.

View them all here

The backstory

While implementing a toggle class feature for some project, it struck me that rather than using JS, I can offload the toggle styling directly to CSS render by using input element of checkbox type which maintains state and has :checked pseudo class already. Depending on the checkbox state sibling elements can be applied styles.

#checkbox{
  ... /* some style properties */
}
#checkbox:checked{
  ... /* some other style properties */
}

To make it attractive I directly added image to input::before pseudo element (and not on label) without giving it a second thought, and all was working file, unless we had to test it on Firefox.

The image added to input::before was not visible in Firefox, after much tweaking, going through stackoverflow & blog articles, I finally discovered that input does not have ::before or ::after in Firefox because input is not a container element as defined in the specification, Chrome supports because it does not follow the specification (or bug?).

I did added the "feature" to this repo since it works in Chrome :)

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.