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
2 answers

In famo.us, rotating an ImageSurface is causing flickering

I'm trying to rotate an image along it's Y axis, with the origin set to center of the image. But, the rotate animation is resulting in flickering. I tried to do the same in famo.us tutorials and could see the same there as well. Following is the…
0
votes
1 answer

Issue related to declaring Variable in Famo.Us

I have Small application in Famo.us Framewok. I want to declare array variable that can be use in calling js. I have 2 .js file: (1) PageView.js (2) GetContent.js (1) PageView.js function AddContent() { View.apply(this, arguments); …
ghanshyam.mirani
  • 3,075
  • 11
  • 45
  • 85
0
votes
2 answers

Famo.us overlapping surfaces - event triggering

I have defined two ImageSurface-s, one is overlapping other just a bit. Now when I click on first surface, my event is not registered. How can I solve that. I have try with z-index property but it won't work. EDIT I am using reference tutorial -…
Sysrq147
  • 1,359
  • 4
  • 27
  • 49
0
votes
1 answer

Famo.us - weird 1px border orund surface

I am learning to work in Famo.us framework, but I have a repeating problem. Around my surfaces there is weird 1px gray border, like one when there is no image src on image element. Do someone know how to solve that. EDIT This only happens when I set…
Sysrq147
  • 1,359
  • 4
  • 27
  • 49
0
votes
1 answer

Famo.us - Event triggered at surface creation

I would like to listen to the event emitted when a surface is created. The purpose is then to load a google map inside the div contained in this surface. var surfaceMap = new Surface({ size: [400, 400], content: '
eckm
  • 3
  • 1
0
votes
2 answers

Famo.us - Documenting a 'curve' function

I have a function fadeOpacity which basically sets up a StateModifier with a start opacity, end opacity, transition and a callback function. I'm using JSDoc for my own code, and was just wondering what type I should be calling a transition In the…
Kraig Walker
  • 812
  • 13
  • 25
0
votes
2 answers

Transforming Panoramas for Virtual Tours with famo.us, has it been done?

I'm looking in to have a virtual tour viewer created using famo.us. I am curious if anyone has explored 3d transformations for 360 degree panoramas using that system? I've looked around and haven't found anything specifically related to that. I've…
0
votes
1 answer

How to Launch famo.us application into iPhone

I have small Application in Famo.us framework. it is having some HTML form and .js files and it runs only in browser, but i want to run it as a appliction in iPhone and android phone. so how to publish Famo.us Application into android and apple…
ghanshyam.mirani
  • 3,075
  • 11
  • 45
  • 85
0
votes
1 answer

how to implement mobile design hamburger side menu with famous?

What's the best way with Famous to implement these well known mobile app design patterns? !) "hamburger" and side-menu like this jasny example ? 2 )Table-View, transitioning to full-screen details page, a little…
dcsan
  • 11,333
  • 15
  • 77
  • 118
0
votes
1 answer

Drop down menu in famo.us

I am trying to just display a drop down menu using famo.us: var selector = new Surface({ size:[200,200], content: ' ' }); what is…
0
votes
1 answer

Scale image on dragging using famo.us

I am new to famo.us, I am trying to scale image on dragging.My code is working fine for one drag after that its not working. How can I make it work fro every drag? Does setTransform make the scale operation fixed? define(function(require, exports,…
0
votes
1 answer

Increase scrollview's element height on clicking it

I am new to famo.us like everybody else. I cannot think of a way to increase the height of each item (probably surface) inside my scrollview on clicking that item. Eg. like below list view below item 1 item 2 item 3 Now Clicked item 2 item…
0
votes
1 answer

Can the famo.us framework be used on Intel XDK?

Can the famo.us framework be used with Intel XDK? Are there known issues when working with them together in order to build a hybrid app?
majimekun
  • 210
  • 2
  • 10
0
votes
0 answers

Changing a content on touch event in famo.us

I am trying to make a simple Surface that would change it's content on a registered touch event. Here is a snippet: var mySurface = new Surface({ content: '' }); mySurface.on('touchstart', function() { this.setContent('Hello…
Alexander
  • 3,965
  • 1
  • 12
  • 16
0
votes
1 answer

Issue related to calling function and passing parameters in Famo.us

I have small application in Famo.us framework I have two javascript files.. (1) App.js (2) Page.js (1)App.js is as below var Surface = require('famous/core/Surface'); var ImageSurface =…
ghanshyam.mirani
  • 3,075
  • 11
  • 45
  • 85