| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A plugin for famous-views.
Create your fluid and beautiful collaborative slides with Famo.us & Meteor.js within seconds.
Starts with the usual and add some packages:
meteor create myslides
cd myslides
mkdir client
meteor add gadicohen:famous-views pierreeric:fview-slidedeck
# From here you can choose your favorite Famo.us provider, mine is Raix's one.
meteor add raix:famonoYou can choose to write your slides with Blaze or with Maxime Quandalle's Jade.
meteor add mquandalle:jadeAnd then in client directory, create as many Blaze or Jade file as you want which will contain your template named with slideXX, where XX is an Number and act as your route to your slide content:
template(name='slide1')
+Surface size='[900, undefined]' align='[.5, .5]' origin='[.5, .5]'
h2 Meetup Famous
h1 Physic engine
img.gravatar(src='/gravatar.png')
.footer PEM : Pierre-Eric Marchandet
template(name='slide2')
+Surface size='[900, undefined]' align='[.5, .5]' origin='[.5, .5]'
h2 Meetup Famous - Chapter 1
p Let us start with the basic...
.footer PEM : Pierre-Eric Marchandet
...That's it! Additional layouts, themes and transitions coming soon.
3 examples are provided in the Github repository:
Take a look at lib/layout.jade. You can copy and paste this and make your own custom layout Template called layout. If we detect that on load, we'll automatically use it instead of defaultLayout, and still add our same helpers onto it for your use.
A basic theme is provided for a nice display out of the box. You can easily customize it with CSS, LESS, Stylus or in CoffeeScript using CSSC.
| Back | FazBrowse Home | New Git URL |