I want to drag a Famous surface, and have it return to its original position when I let go of it. I've taken the "Drag" example and modified it, but while the mouseup callback is triggering (I checked with console.log), the modifier trans...
2 Technologies: Meteor with the blaze templating engine Famo.us with their awesome gui framework I come from the meteor side, I personally like using {{mustache}} (handlebars) to drive the gui from data, the reactive session / database makes this...
I am trying to add a image below a scrollview using the famous sequentialLayout and im having a problem with the scrollview's height. This is how i create my scrollview. var scrollview = new Scrollview({ direction: Utility.Direction....
I need to make opacity of a surface to transform from 0 to 1 like this: stateModifier.setTransform( Transform.multiply(Transform.opacity(1), Transform.rotateX(0)), { duration : 500, curve: Easing.inOutSine } ); But Transform.opacity doesn'...
In the famo.us source I see that two things are emitted upon collision: the 'collision' string, and a variable called collisionData, like this: (physics/constraints/Collision.js, lines 112-122): if (this._eventOutput) { var c...
I'm trying to place six circles around a center circle. Eeach of them has the same diameter so it should be possible to place them around the center without space between or overlaps. I thinking to be close to the solution but there are small ove...
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,...
I have ScrollView and sequence of Surface elements in it. I want to be able to scroll to the latest element as soon as it appears in the array. Here is a demo, I want it to be scrolled just like in any chat application... old surfaces go beyond the...
I tried implementing an iframe within a surface. /* globals define */ define(function(require, exports, module) { 'use strict'; // import dependencies var Engine = require('famous/core/Engine'); var Modifier = require('famous/cor...
I’m trying to create a scrolling form for a mobile web app using a Famous ScrollView. However, iOS exhibits severe display bugs when scrolling while the keyboard is active. This occurs whether using an InputSurface or embedding an <input> dir...
©2020 All rights reserved.