Questions tagged [famo.us]

Famo.us is a JavaScript rendering and physics engine for creating web applications with high-performance 3D user interfaces.

Famo.us features a rendering engine that avoids slow DOM-layout and repaint calculations. Instead, it leverages the GPU using CSS3 transform.

Famo.us provides a JavaScript framework designed to build rich, interactive web applications. Famo.us takes an opinionated approach to web development, maintaining a tight control of rendering to achieve performance. The framework also maintains strict modularity for flexibility. Paired with server-side technology designed to match Famo.us on the front end, you can finally create high quality applications that were once reserved only for native development.

For more information see project website Famous.org

The prior version (v.0.3.5) site can be found at deprecated.famous.org

478 questions
0
votes
1 answer

Famo.us : Is there a way to clear an "emit" emitted by a view?

Currently trying to add multiple functions to a single surface. hoping there is something similar to "pipe" which is "unpipe" is there an "unemit"?
0
votes
2 answers

famo.us animate state of Surfaces in a GridLayout with a StateModifier

How can I attach a StateModifier to a Surface that resides in a GridLayout? My Code looks something like this: //... var grid = new Gridlayout({dimensions: [2,1]}); var surfaces = []; grid.sequenceFrom(surfaces); var surface01 = new…
doemsche
  • 892
  • 2
  • 12
  • 25
0
votes
1 answer

famo.us click generates two events Mouseevent and CustomEvent - overlayed surfaces

I have encountered surfaces for which onlick famo.us randomly generates CustomEvent or Mouseevent or in some cases both. How does this work? Surface B is as wide as its radius and has a transform (10, 280, 2) Surface A's width is 320 and has a…
visheshd
  • 341
  • 2
  • 7
0
votes
3 answers

Scaling text to fit in Famo.us Surface

Here's the surface this.gymNameSurface = new Surface({ size: [true, gymDetailItemHeight], classes: ["gym_name_details"], content: ['
',this.options.data.gymName.properties.gymName,'
'].join(''), properties: { …
NateH
  • 85
  • 1
  • 7
0
votes
1 answer

How to smoothly have a menu bar shrink as the scrollview is pushed up?

I'm trying to achieve the effect of the header collapsing when scrolling up seen here: http://youtu.be/QXeFl093_FI?t=50s I'm quite new to famo.us but here's a jsfiddle with what I have tried so far: http://jsfiddle.net/jamalio/cy07xxs7/ var Engine =…
jamwise
  • 165
  • 1
  • 1
  • 10
0
votes
1 answer

Famo.us Prevent Scrollview Bounce

I can't seem to find the correct set of scrollView options to disable the overscroll/bounce effect. I'm using the last example on this page: https://famo.us/integrations/angular/docs/unstable/api/directive/faScrollView/index.html End goal is to have…
user2488234
  • 382
  • 4
  • 12
0
votes
1 answer

Famo.us App: Is there a recommended way to call an external API in a standalone famous app?

I'm aware that Famous framework does not care about data in the app, and something like AngularJS is the most ideal candidate for the job. I just want to know how other folks out here are handling data in their apps, specifically POST requests from…
insaneinc
  • 260
  • 1
  • 12
0
votes
1 answer

Famo.us not loading Constructor of Strip View in Timbre Example

I am working no Timbre View Example of Famo.us, and what I am trying to achieve is simply open the page by clicking on strip view options in the app and closing the Menu Drawer as soon as I click on the Strip View option for achieving this…
Ahsan Hussain
  • 75
  • 1
  • 6
0
votes
2 answers

How do you find the page index from the paginated scrollview?

I've been trying to find a way to keep track of which page the scrollview is on. Here's my scrollview: var scrollview = new Scrollview({ direction:1, paginated:true }); scrollview.sequenceFrom(surfaces); I couldn't find anything, so as a…
jamwise
  • 165
  • 1
  • 1
  • 10
0
votes
1 answer

Mysterious famous-surface under famous-container

I have a simple mobile app I am putting together. I am trying to understand where a famous surface is coming from, because I think it is causing issues when I try to position an element in the upper-right-hand corner. (But for now let's stick with…
Joseph Carroll
  • 465
  • 6
  • 15
0
votes
4 answers

Famous-Angular with Meteor

Is there a way to use Famous-Angular with Meteor.js? I have tried to add the ngMeteor package with Famono and the bower package with famous-angular in the smart.json.
rjsandman18
  • 123
  • 1
  • 9
0
votes
1 answer

Famo.us: Implementing History API for navigation

I'm trying to rebuild a basic app in Famo.us (including it's magic of course). The problem I have is while creating the navigation. Every guide I've seen it only updates the content of the same Surface. In famo.us you can create a navigation but I…
Rod
  • 90
  • 8
0
votes
1 answer

How can i set zIndex for Scrollview?

I have stack of ScrollViews which has a list of surfaces within it. I need to stack the scrollviews properly. But for stacking surfaces im able to do it by zIndex property ? But im not able to set zIndex property for ScrollView ? this works …
0
votes
1 answer

how to do loops, and callbacks using $timeline?

Are these functionalities built into the service somewhere? Here's sample context: HTML ... JS $scope.testTimeline = new Transitionable(0); $scope.opacityMod = $testTimeline([ [0, 0,…
user1857711
  • 117
  • 2
0
votes
1 answer

Is there any way I can use famo.us animation for an existing div

I have div and menus already, what I need is famo.us matrix animation, is there a way, I can use the existing element to do animation, or is there any alternative. I haven't created the div from famous, and in that case I am sure I won't be able to…
nicolsondsouza
  • 426
  • 3
  • 15