使用GSAP动画Fabric js?

时间:2017-09-20 13:56:45

标签: javascript canvas css-animations fabricjs gsap

我一直在玩Fabric.js库一段时间。它是什么感觉很容易转换对象和更多。

我想知道是否有插件或使用GSAP动画Fabric元素的任何方法?

1 个答案:

答案 0 :(得分:0)

可以通过将结构对象传递到GSAP

来完成
if let uid = Auth.auth().currentUser?.uid {
        uidRef.child(uid).child("annotations").observeSingleEvent(of: .value, with: {snapshot in
            if snapshot is NSNull{
                //Handles error
            } else{
                if let value = snapshot.value as? NSDictionary{ //(or [String: String]
                    //set localDictionary equal to value
                }
            }
            self.tableView.reloadSections([0], with: .fade)
        })
    }