基于 weex / React Native
的富交互解决方案。
官网: https://alibaba.github.io/bindingx/
它提供了一种称之为 表达式绑定(Expression Binding)
的机制可以在 weex 上让手势等复杂交互操作以60fps的帧率流畅执行,而不会导致卡顿,因而带来了更优秀的用户体验 🎉 🎉 🎉。
由于 weex/RN
框架底层使用的 JS-Native Bridge
具有天然的异步特性,这使得 JS
和 Native
之间的通信会有固定的性能损耗,因此在一些复杂的实时交互场景中(如手势),JS 代码很难以高帧率运行,这极大地限制了框架的能力。目前官方并没有很好的方式解决。
而我们通过探索,提出了一种全新的方式用来解决这个问题,方案称之为 Expression Binding
。它的核心思想是将"交互行为"以表达式的方式描述,并提前预置到Native从而避免Native与JS频繁通信。
下面展示了一部分使用bindingx
的示例。您可以下载或者编译我们的playground app来获取更多的示例。同时,您也可以在我们的在线playground上编写您自己的demo。
- Draggable ball: rax vue
- Swipeable card: rax vue
- Expandable menu: rax vue
- Slide layout: rax vue
- Circle menu: rax vue
- Navigation with Tab: rax vue
- Ripple effect: rax vue
注意:Weex支持两种前端写法(rax和vue),链接是直接跳转到Playground。 React-Native由于目前Playground还不支持,所以直接跳转到源码。
- 复杂但流畅的交互效果
- 强大的表达式解析引擎
- 丰富的缓动函数
确保你已经集成了weex_sdk。
有两种集成方式可供选择。
- 手动集成。(推荐)
-
在您项目中的
build.gradle
中添加依赖:implementation 'com.alibaba.android:bindingx-core:1.0.1' implementation 'com.alibaba.android:bindingx_weex_plugin:1.0.1'
-
在工程的合适位置(如Application#onCreate)注入
BindingX
模块。BindingX.register()
- 使用weex plugin loader自动注入bindingx。
-
在您项目中的
build.gradle
中添加依赖:implementation 'com.alibaba.android:bindingx-core:1.0.1' implementation 'com.alibaba.android:bindingx_weex_plugin:1.0.1' implementation 'org.weex.plugin:plugin-loader:1.0.0'
-
在工程的合适位置(如Application#onCreate)加载插件。
WeexPluginContainer.loadAll(getApplicationContext());
- CocoaPods
在您项目中的Podfile
中添加依赖:
pod 'BindingX', '~> 1.0.3'
自动注册module,无需手动注册。
前置条件: 确保你已经集成了react native。
- 安装依赖
npm install react-native-bindingx --save
- 链接:
react-native link react-native-bindingx
在你项目的build.gradle
中增加bindingx-core
依赖:
implementation 'com.alibaba.android:bindingx-core:{latest_version}'
bindingx
默认使用gradle 3.x编译,如果你的项目还是运行在gradle 2.x上,需要升级到3.x;- gradle 3.x使用
implementation
关键字替代了compile
关键字,需要修改; - 增加google源:
repositories {
google()
...
}
https://alibaba.github.io/bindingx/guide/introduce
- 如果您有任何想法或者建议,欢迎提交PR。
- 使用过程中,如果碰到了无法解决的问题,可以新建一个issue。
- 欢迎加入钉钉聊天群
Copyright 2018 Alibaba Group
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.