Git Product home page Git Product logo

modernizr's Introduction

Modernizr Build Status

Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.

Modernizr tests which native CSS3 and HTML5 features are available in the current UA and makes the results available to you in two ways: as properties on a global Modernizr object, and as classes on the <html> element. This information allows you to progressively enhance your pages with a granular level of control over the experience.

Modernizr has an optional (not included) conditional resource loader called Modernizr.load(), based on Yepnope.js. You can get a build that includes Modernizr.load(), as well as choosing which feature tests to include on the Download page.

New Asynchronous Event Listeners

Often times people want to know when an asynchronous test is done so they can allow their application to react to it. In the past, you've had to rely on watching properties or <html> classes. Only events on asynchronous tests are supported. Synchronous tests should be handled synchronously for speed and consistency reasons.

The new api looks like this:

// Listen to a test, give it a callback
Modernizr.on('testname', function( result ) {
  if (result) {
    console.log('The test passed!');
  }
  else {
    console.log('The test failed!');
  }
});

We guarantee that we'll only invoke your function once (per time that you call on). We are currently not exposing a method for exposing the trigger functionality. Instead, if you'd like to have control over async tests, use the src/addTest feature, and any test that you set will automatically expose and trigger the on functionality.

Getting Started

  • Clone or download the repository
  • Install project dependencies with npm install

Test suite

Run the test suite

Building Modernizr v3

To generate everything in 'config-all.json':

grunt build
//outputs to ./dist/modernizr-build.js

To run tests (in phantom):

grunt test

To run tests (in browser):

grunt build
serve .
visit <url>/test

To see simple build in browser:

serve the root dir, <url>/test/modular.html

To see the build tool:

  • checkout the modernizr.com code
  • install all your gems and bundles and jekyll and shit
  • jekyll
  • serve ./_sites
  • visit /download
  • It should be just a big list of things you can build with no frills.

API Reference

Modernizr can be used programmatically via npm:

var modernizr = require("modernizr");

Building

A build method is exposed for generating custom Modernizr builds. Example:

var modernizr = require("modernizr");

modernizr.build({}, function (result) {
  console.log(result.code); // full source
  console.log(result.min); // minfied output
});

The first parameter takes a JSON object of options and feature-detects to include. See lib/config-all.json for all available options.

The second parameter is a function invoked on task completion.

License

MIT license

modernizr's People

Contributors

paulirish avatar slexaxton avatar patrickkettner avatar ryanseddon avatar stucox avatar rupl avatar kurafire avatar seutje avatar addyosmani avatar doctyper avatar mathiasbynens avatar nschonni avatar emilchristensen avatar cowboy avatar ryanve avatar zhorvath avatar alrra avatar fearphage avatar thvd avatar hay avatar danbeam avatar ebidel avatar josh avatar helgri avatar zeedev avatar glsee avatar jokeyrhyme avatar mibalan avatar nwtn avatar sindresorhus avatar

Watchers

Chris Powers avatar Drew avatar Nick Hatch avatar Matt Billock avatar Jason Sendelbach avatar John avatar Olivia avatar Peter Soung avatar Nick Nieman avatar John Ritterbush avatar Ben Siver avatar Tom Seiler avatar Jack Lenehan avatar Dave Huber avatar Lucas Moellers avatar Ethan Hall avatar James Cloos avatar Samuel A. avatar David Michaels avatar Kenny Cason avatar Ryan Phillips avatar Adrian W. Lange avatar Lorena Mesa avatar Austin Gundry avatar  avatar Monica Friend avatar Allison Schwarz avatar Will Mosley avatar George avatar  avatar Stanton Valentino avatar Becky Jacob avatar  avatar Ibrahim Hamisu avatar Kevin Kowalewski avatar Jake Strang avatar  avatar Luke Gabrieli avatar  avatar Bill Foehring avatar Jackson Davis avatar Joyelle Johnson avatar  avatar Josh Casale avatar Matt Bartholomew avatar Tomasz Czajka avatar  avatar Shweta avatar  avatar Brent Marieb avatar Eric Mikkelsen avatar  avatar  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.