GithubHelp home page GithubHelp logo

lholmquist / ember-responsive Goto Github PK

View Code? Open in Web Editor NEW

This project forked from f3ndot/ember-responsive

0.0 3.0 0.0 531 KB

Easy responsive layouts with Ember

Home Page: https://freshbooks.github.io/ember-responsive/

License: MIT License

ember-responsive's Introduction



                    ┌─┐┌┬┐┌┐ ┌─┐┬─┐   ┬─┐┌─┐┌─┐┌─┐┌─┐┌┐┌┌─┐┬┬  ┬┌─┐
                 ~─ ├┤ │││├┴┐├┤ ├┬┘ ─ ├┬┘├┤ └─┐├─┘│ ││││└─┐│└┐┌┘├┤  ─~
                    └─┘┴ ┴└─┘└─┘┴└─   ┴└─└─┘└─┘┴  └─┘┘└┘└─┘┴ └┘ └─┘

                    ~─────────────────────────────────────────────~


         The goal of ember-responsive is to give you a simple, Ember-aware way
         of dealing with media queries. All you need to do is tell it your
         application's breakpoints and it'll expose the rest for you.


         Getting Started
         ~──────────────

         Fortunately, ember-responsive is dead-simple to set up. You can start
         by adding it to your list of bower dependencies:

            $ bower install --save ember-responsive

         After that, simply register the media queries that are pertinent
         to your application.

            App = Ember.Application.extend();

            // Add the following initializer wherever you create your App class,
            // giving it a list of named breakpoints that your app responds to.
            App.responsive({
              media: {
                mobile:  '(max-width: 768px)',
                tablet:  '(min-width: 769px) and (max-width: 992px)',
                desktop: '(min-width: 993px) and (max-width: 1200px)',
                jumbo:   '(min-width: 1201px)',
              }
            });

         You can then query those breakpoints in your controllers, components,
         routes, and views:

            this.get('media.isMobile'); // => true

         Obviously, these properties also propagate to templates:

            {{#if media.isDesktop}}
              Desktop view!
            {{/if}}

         You should also bind the list of active media queries to your app's
         rootElement. This means you won't have to deal with complicated media
         queries in CSS—instead simply use classes to style the different devices.

            App.ApplicationView = Ember.View.extend({
              classNameBindings: ['media.classNames']
            });


         License
         ~──────

         This library is lovingly brought to you by the FreshBooks developers.
         We've released it under the MIT license.

ember-responsive's People

Contributors

alexbaizeau avatar

Watchers

James Cloos avatar Lucas Holmquist 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.