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

Another effect to slide views on fame.us app?

i have 2 views in fame.us app, and slide in EdgeSwapper view, and i want change default effect of EdgeSwapper.show(). I want effect like a smooth transition forward and backwards, how i can do it?
0
votes
1 answer

ng-include not working in famo.us-angular - not due to missing double quotes

I'm working on a hybrid mobile app using famo.us-angular. I'm trying to include a partial/template in my 'index.html' like so:
Double quotes are there, there's…
burtelli
  • 153
  • 9
0
votes
1 answer

concurrent modifiers result in huge surface trembling in famo.us

My goal is to mimic Z-translation in perspective mode by using multiple modifiers. I can not use just z-translation of a surface because a text of translated surface became blurred (at least at Chrome but also on another browsers). The idea of using…
31415926
  • 3,811
  • 7
  • 47
  • 78
0
votes
0 answers

origin doesn't work in Famo.us

I have containerSurface with Imagesurface inside. I want to resize my container and to keep my image in the center. for this i using modifier align and origin. The problem is that origin doesn't work for some reason. Any ideas why? Is there any…
31415926
  • 3,811
  • 7
  • 47
  • 78
0
votes
1 answer

Change item height in famous-flex list

I have a list in a FlexScrollView. I'm selecting an item in the list according to some logic, and I need the selected item to expand. Since a change in height won't be noticed by famo.us I'm looking for a way to make it work. Any ideas? So far I…
Moti Azu
  • 5,392
  • 1
  • 23
  • 32
0
votes
2 answers

Famo.us Scrollview + TouchSync - Make ScrollView/TouchSync Aware of rotateZ Transforms

EDIT: Solved - see new code excerpts I have a Famo.us scroll view nested inside a ContainerSurface. The ContainerSurface rotates on mutli-touch rotate gestures, but once rotated the scrollview's scroll direction doesn't stay relative to the modifier…
Eric T
  • 944
  • 1
  • 11
  • 26
0
votes
1 answer

Famo.us Balls Drag and Drop, set velocity when released

I'm trying to achieve something similar to an air hockey table effect with Famo.us. The idea is to have multiple circle bodies that can collide (see battle). Right now my first concern is getting the ball's vector attributes to zero out on drag…
Eric T
  • 944
  • 1
  • 11
  • 26
0
votes
1 answer

Disable Scrollview in Famo.us

How can I disable and re-enable dragging on a scrollview in Famo.us? Docs here
Jordan
  • 1,003
  • 2
  • 12
  • 24
0
votes
0 answers

Famo.us - software architecture for Touch/Mouse Events - where to manage it?

hope you're all doing well :) This is not really a coding question, but more of a 'where do you put the code' question... I am using Famo.us and building an application that comprises of a number of child Views. A quick description of the approach…
Pandafinity
  • 713
  • 2
  • 7
  • 19
0
votes
1 answer

famou.us surface slide in from left on click

I am noob with famo.us. I would like to load a surface 'onclick' with a slide in from left animation My current action is using image1.on('touchstart', function() { var st = new Modifier(); st.setTransform( …
Pavan K
  • 4,085
  • 8
  • 41
  • 72
0
votes
1 answer

mjn:famous package destroys my links

When I use the mjn:famous package in my meteor application the links only work when I do a long tap on mobile. fast tapping will route me to the page also but its refreshing the page and I don't want a refresh here. I also can't deactivate…
Dude
  • 1,045
  • 2
  • 15
  • 36
0
votes
1 answer

Famo.us RenderController not working under SequentialLayout?

I have added a common Surface and a Scrollview (actually a FlexScrollView) to a SequentialLayout and then added the layout to my View as the following code shows: function _createCameraView() { var layoutViews = []; this.cameraView = new…
Cassildo
  • 11
  • 1
0
votes
1 answer

on window load events in famo.us app

Hello I am a noob to famo.us and would like to be notified for events like on window load using the famo.us package the only way I currently get this functionality, is like this: Engine.on('postrender', function(e){ …
Pavan K
  • 4,085
  • 8
  • 41
  • 72
0
votes
2 answers

Famo.us: Function Calls as HTML Links in Surface Content

I'm trying to call a function by clicking an HTML link on a surface. This doesn't work as intended: define(function(require, exports, module) { var Engine = require("famous/core/Engine"); var Surface = require("famous/core/Surface"); var…
Mike
  • 13
  • 4
0
votes
1 answer

Chrome crops image in famo.us

I have a background (svg) image that I initially will view zoomed in and then on an event the image will zoom out to fit in the page. This works well in Firefox but in Chrome the picture was cropped when zoomed in and thus when it is supposed to fit…
vikeri
  • 642
  • 6
  • 16