GithubHelp home page GithubHelp logo

spriteonhover's People

Contributors

apolinario avatar sbglasius avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

spriteonhover's Issues

JS Fix for animations in Internet Explorer

IE doesn’t know what background-position is, it only knows 2 other calls: background-position-x and background-position-y. Here is a function to handle this problem.

(function($) {
  jQuery.fn.backgroundPosition = function() {
    var p = $(this).css('background-position');
    if(typeof(p) === 'undefined') return $(this).css('background-position-x') + ' ' + $(this).css('background-position-y');
    else return p;
  };
})(jQuery);

Also be sure to replace line 82 and 125 from:

var backgroundPos = $(this_parent).css('background-position').split(" ");

To:

var backgroundPos = $(this_parent).backgroundPosition().split(" ");

Help please!

Hi there,

I am using this to create an annimation when hover over but it is not working for me. I think it might be my PNG - How do I set up my PNG correctly - please advise.!

Cheers :)

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.