GithubHelp home page GithubHelp logo

pkdevboxy / adaptive-evil-blocks Goto Github PK

View Code? Open in Web Editor NEW

This project forked from madyankin/adaptive-evil-blocks

0.0 2.0 0.0 241 KB

Adaptivity support for Evil Blocks

License: MIT License

CoffeeScript 33.58% Ruby 9.60% JavaScript 50.77% HTML 6.05%

adaptive-evil-blocks's Introduction

Adaptive Evil Blocks

Build Status

Adaptive Evil Blocks is a filter that adds adaptivity to Evil Blocks. The matchMedia.js polyfill is used for old browsers.

The adaptivity is provided by the @media method powered by underlying matchMedia API. So you can use media queries syntax.

Sponsored by Evil Martians

Installation

Ruby on Rails

Add the adaptive-evil-blocks-rails gem to Gemfile:

gem "adaptive-evil-blocks-rails"

Add adaptive-evil-blocks to your scripts:

//= require adaptive-evil-blocks

Others

Add the pkg/adaptive-evil-blocks.js file to your project or install the bower package:

bower install adaptive-evil-blocks

If you support old browsers, you may want to use the pkg/adaptive-evil-blocks.polyfilled.js file.

Usage

Run code once only if it matches a media query:

evil.block '@@block',

  init: ->
    @media '(max-width: 399px)', -> ...
    @media '(min-width: 400px)', -> ...

The match callback is executed every time on query match, the mismatch callback is executed every time on query mismatch.

evil.block '@@block',

  init: ->
    @media '(max-width: 399px)', match: -> ...
    @media '(min-width: 400px)', match: -> ...

    @media '(max-width: 399px)', match: -> ... , mismatch: -> ...
    @media '(min-width: 400px)', match: -> ... , mismatch: -> ...

Also you can omit brackets for properties like max-width and min-width:

evil.block '@@block',
  init: ->
    @media 'max-width: 399px', -> ...

adaptive-evil-blocks's People

Contributors

madyankin avatar pdehaan avatar

Watchers

 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.