Coder Social home page Coder Social logo

jquery-keyframes-animation's People

Contributors

kohashi avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

jquery-keyframes-animation's Issues

How to use?

Hi :)
Thanks for your work. Can you add a little example, how to use your code in jQuery, please?

Greetings from germany

P.S.: By the way, "feature detection" is much better than "browser detection" I think. A way like this would be safer:

  function styleSupport( prop ) {
    var vendorProp, supportedProp,

        // capitalize first character of the prop to test vendor prefix
        capProp = prop.charAt(0).toUpperCase() + prop.slice(1),
        prefixes = [ "Moz", "Webkit", "O", "ms" ],
        div = document.createElement( "div" );

    if ( prop in div.style ) {

      // browser supports standard CSS property name
      supportedProp = "";
    } else {

      // otherwise test support for vendor-prefixed property names
      for ( var i = 0; i < prefixes.length; i++ ) {
        vendorProp = prefixes[i] + capProp;
        if ( vendorProp in div.style ) {
          supportedProp = '-' + prefixes[i] + '-';
          break;
        }
      }

        // avoid memory leak in IE
        div = null;

        // add property to $.support so it can be accessed elsewhere
        $.support[ prop ] = supportedProp;

        return supportedProp;
    }
 }

And what is to do if there already is a "Style node"? Maybe this helps...

  if( document.styleSheets && document.styleSheets.length ) {
      document.styleSheets[0].insertRule(......, 0);
  } else {
      //create new style node
  }

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.