Liquid Fire
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/ef4/liquid-fire
- 软件文档: http://ef4.github.io/liquid-fire/
软件介绍
Liquid Fire 为 Ember 应用提供了完整的动画支持。
示例代码:
import { animate, stop } from "vendor/liquid-fire";
export function crossFade(oldView, insertNewView, opts) {
stop(oldView);
return insertNewView().then(function(newView) {
return Promise.all([
animate(oldView, {opacity: 0}, opts),
animate(newView, {opacity: [1, 0]}, opts)
]);
});
});
export function fade(oldView, insertNewView) {
stop(oldView);
return animate(oldView, {opacity: 0})
.then(insertNewView)
.then(function(newView){
return animate(newView, {opacity: [1, 0]});
});
});
维多利亚时代的互联网
[英] 汤姆·斯丹迪奇 / 多绥婷 / 后浪丨江西人民出版社 / 2017-8 / 38.00元
人类历史上的第一次大连接 回顾互联网的前世 预言互联网的未来 ……………… ※编辑推荐※ ☆《财富》杂志推荐的75本商务人士必读书之一 ☆ 回顾互联网的前世,颠覆你的思维,升级你对互联网的认知 ☆ 人类历史上一次全球大连接是维多利亚时期的电报时代,那时候也有疯狂的资本、 巨大的泡沫、网络新型犯罪、网络亚文化崛起……现在的互联网时代就是电报时代的重演;回顾那......一起来看看 《维多利亚时代的互联网》 这本书的介绍吧!
