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

How to in Famo.us, workaround Safari image resource limit?

I need to display a grid with a lot of images but this caused problems on safari for ipad... my project is similar to Albumatic demo from famo.us (you have to be registered, https://famo.us/demos ), and i found this:…
Alessandro Annini
  • 1,531
  • 2
  • 17
  • 32
0
votes
1 answer

how to add a delay to a famous transition?

I want to stagger an animations starting point. with Transit.js and similar JQuery libs a transition can take a delay parameter. I tried similar with a Famous transition, without effect. I'm wondering if it's needed to wrap a transition inside a…
dcsan
  • 11,333
  • 15
  • 77
  • 118
0
votes
1 answer

Modify GridLayout in famo.us

i would like to modify each of the grid to my own content. my question is how do i modify the grid to show individual surfaces? for example instead of the array items just have surface1, surface2, surface3 etc.. var Engine =…
mambushe
  • 5
  • 1
0
votes
3 answers

Can I build an iOS or android app using only famo.us?

I'm assuming that I would need to build some wrapper or shell in obj-c (for iPhone) to interact with notification, vibration, and other iPhone APIs right? It seems like famo.us would allow me to build an app that can run on any mobile device, with…
skb
  • 30,624
  • 33
  • 94
  • 146
0
votes
2 answers

Famo.us and landscape orientation

Is famo.us currently suitable for landscape oriented development ? I'm especially concerned in making it to work on iPhone. As I saw unfortunately the iOS < 7.1 safari takes a quarter of the height just for the navigation bar. Hiding it completely…
Flavien Volken
  • 19,196
  • 12
  • 100
  • 133
0
votes
1 answer

Animating blur with the famous framework

Does anyone know what Modifier I would use to animate the blur properties of an item? I'd like to animate from clear to a certain level of blur. Something similar to: .blur-out { -webkit-filter: blur(8px); -webkit-transform: scale(1.1,…
sday
  • 1,041
  • 14
  • 22
0
votes
2 answers

How can you transition between views containing Scrollviews in Famo.us?

I am looking to re-tool my mobile web application to make use of Famo.us. It's all quite standard with scrollviews embedded in standard surfaces. If anyone could help me figure out how to transition between surfaces containing Scrollviews, I'd…
patrickjquinn
  • 288
  • 1
  • 15
0
votes
4 answers

mixing famo.us with a normal meteor/html app

I've started using famo.us for a meteor app, and Famo.us seems to not "play nice" it takes over the main rendering of the app such that normal scrolling and other html like behavior is lost. I disabled the famous.css but it seems deeper inside…
dcsan
  • 11,333
  • 15
  • 77
  • 118
0
votes
1 answer

how to set alt or title tag for ImageSurface?

The image generated using the following example Famo.us example: ImageSurface generates an tag without alt or title attributes. Is there a built-in function that allows adding HTML attributes?
Amielucha
  • 123
  • 1
  • 7
0
votes
2 answers

Implementing infinite rotation with a StateModifier

I'm trying to make a loading spinner animation that rotates 'forever'. I can do it in CSS3 with #spinner { -webkit-animation: rotation 2s infinite linear; } @-webkit-keyframes rotation { from {-webkit-transform: rotate(0deg);} to …
jdee
  • 11,612
  • 10
  • 38
  • 36
0
votes
2 answers

Proper way to transition color (or non-transform/opacity CSS properties) in Famo.us?

I'm trying to get a square to change color on click in Famo.us, with a transition. I'm currently using CSS classes: var square = new Surface({ size: [200, 200], content: 'Hello.', properties: { lineHeight: '200px', textAlign: 'center' …
Theodor Vararu
  • 401
  • 2
  • 9
0
votes
1 answer

Load "on the fly" code with requirejs

I'm trying to create an online interactive js programming test-bed. I have a code window and a target iframe where the code gets loaded to execute. I wrap the code in html and load it into the iframe. The problem is that the code I want to be…
rich
  • 196
  • 4
0
votes
2 answers

How to include a folder when serve the project

i generated the scaffold of a famo.us project with Yeoman (yo famous) i set up i small working project i tried to launch it with 'grunt serve' command it all works but no image is loaded because the folder content/images is not loaded how can i…
Alessandro Annini
  • 1,531
  • 2
  • 17
  • 32
0
votes
1 answer

Including external css files in Famo.us project

I've created a project using Famo.us's Yeoman generator. It creates an index.html file, a styles folder, a src folder, and a content folder. The gruntfile specifies that index.html includes all css files under the styles folder. However, I want to…
EthanLWillis
  • 930
  • 4
  • 14
  • 27
-1
votes
1 answer

Can the new Famo.us Library be used without require?

I'm talking about the library here: http://famous.org/ It uses require() methods and I was curious if there's a different version with it.
1 2 3
31
32