INTERACTIVE TRANSITIONS 实时动态动画

2024-09-05 13:38

本文主要是介绍INTERACTIVE TRANSITIONS 实时动态动画,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

INTERACTIVE TRANSITIONS 实时动态动画

翻译不到位处敬请谅解,感谢原作者分享精神

原文链接 http://www.thinkandbuild.it/interactive-transitions/

源码下载 http://pan.baidu.com/s/1i3HW5FZ

 

It’s been a while and after some long due time off I’m finally back with a new iOS tutorial.

I wanted to add some more details to my previous post showing you how to implement an interactive transition and that’s exactly what I’m going to do with this article!

有好长一阵子,我没有写一个新的iOS教程了。

我想给我之前的博文添加一些细节,教你怎么实现实时动态交互的动画效果,这篇文章就专门研究这个。

INTERACTIVE VS ANIMATED TRANSITION(实时动态动画 VS 普通动画

The main difference between these two ways of performing a transition is obviously how they progress from start to finish.

With an animated transition we define the timing, the initial and final state withtransitionDuration and animateTransition methods ofUIViewControllerAnimatedTransitioning. So the animation just runs from 0 to 100% in a pre-defined time. Yes, you could also perform keyframe animation having some more control over the flow, but you still end up with a complete animation cycle, from 0 to 100%.

The interactive transition is a great way to create a synergy with the user. He (or she) becomes the director of the transition, driving the animation flow and cancelling the transition if need be.

这两种动画最主要的不同,很明显,就是,他们如何从动画的开始到动画结束的。

对于普通动画,我们定义了时间,时间间隔,动画截止时的状态,通过UIViewControllerAnimatedTransitioning中的这些方法transitionDuration以及animateTransition方法。所以,这个动画效果就只会在预先定义的时间里面执行。当然,你也可以使用关键帧动画来增加一些更好的效果,但始终,这个动画只会从0运行到100%,一个完整的动画周期。

实时动态动画是一种和用户实时交互的动画,用户能够实时控制这个动画,他想取消就取消,他想继续就继续。

CUSTOM TRANSITION, QUICK RECAP(自定义转场动画的快速概要

In my previous post we’ve created a custom transition to present a modal controller essentially following these steps:

1) Creating a UIViewControllerTransitioningDelegate. Its main role is returning an object responsible for the animation.

2) Creating that object. It has to implement the UIViewControllerAnimatedTransitioningprotocol.

3) The method animateTransition is part of that protocol and here we’ve “drawn” the animation thanks to the transition context. The context (UIViewControllerContextTransitioning) comes with important information such as the “from”, the “to” controllers and the containerView where the animation takes place.

You can take a look at my for more details.

在我之前的文章当中,我们创建了一个自定义的转场动画,遵循以下的几个步骤:

1)创建一个UIViewControllerTransitioningDelegate。他的核心就是返回一个代表这个动画的对象。

2)创建一个对象,他必须实现UIViewControllerAnimatedTransitioning协议。

3)animateTransition是那个协议中的一部分,在这里,我们来通过动画context来“绘制”这个动画。这个context(UIViewControllerContextTransitioning)包含了重要信息,包括来自于哪个controller,去哪个controller,以及发生动画的容器containerView。

你可以在我之前的博文中获取更多的细节。

GO INTERACTIVE, THE EASIEST WAY(实时动态动画,最简单的方式

So far so good, those steps are still needed to build an interactive transition, but obviously we have to add something more to this procedure to achieve the interactivity.

Our goal is basically to tie the user’s touch position to the current animation progress, so we have to implement a gesture handler that takes that into account. Then we can convert this information in the transition progress:

越快越好,为了实现实时动画效果,以下几步还是需要的,很明显,我们会添加一些新步骤来达到实时动画的目的。

我们最基本的目标就是绑定用户的手势触目点到当前的动画progress中,所以,我们必须实现一个手势,来达到那个目的。只有这样,我们才能够把这些信息与progress实时转换:

First, we have to implement two more methods from UIViewControllerTransitioningDelegate. We have already implemented the two that return the UIViewControllerAnimatedTransitioning object (step 2 of the previous list), namely animationControllerForPresentedController:etcetc… and animationControllerForDismissedController.

第一步,我们还得实现另外两个UIViewControllerTransitioningDelegate的方法。我们已经实现过了那两个方法,他们返回了UIViewControllerAnimatedTransitioning对象(之前博文中的第二步),起名叫animationControllerForPresentedController:以及animationControllerForDismissedController。

Now we have to inform the system that we want to perform an interactive transition, so it needs an object that implements the UIViewControllerInteractiveTransitioningprotocol. These two methods are interactionControllerForPresentation and interactionControllerForDismissal. Again, the system needs an object to guide the presentation and the dismissal of the controller, and again, this object has to implement a protocol, the UIViewControllerInteractiveTransitioning.

现在我们需要通知系统,我们想执行实时动画转场,所以系统需要一个对象实现了UIViewControllerInteractiveTransitioning协议。这两个方法就是interactionControllerForPresentation以及interactionControllerForDismissa。系统还需要一个对象来指引展示以及消退的controller。所以,这个对象需要实现一个协议,那就是UIViewControllerInteractiveTransitioning。

This logic is really similar to what we did to create the “standard” custom transition.

这个逻辑与我们之前实现的标准定制的转场动画很相似。

LET’S CODE(代码

Open the project and check the group “Controllers”. We have 2 classes here: mainController and modalController. Their roles are obvious: mainController is the presenter of the modalController, nothing more.

In the group Transition you can find the core of this tutorial: the TransitionManager. This object contains all the transition logic, from the animation to the gesture handler, and it implements all the protocols that I’ve previously told you about.

打开这个工程,检查一下controllers,我们有两个类在里面,mainController以及modalController。这个顺序显而易见:mainController会推出modalController。

还有一个文件夹Transition,那就是这篇教程的核心:变换管理器。这个对象包含了所有的实现转场动画的逻辑,从动画到手势,他实现了所有我前文中我所提到的协议。

THE GESTURE RECOGNISER(手势识别

We want to tie the user interaction to the transition progress. So let’s review the code needed for this operation. Open the TransitionManager.m file.

The function setMainController is the setter for the mainController property, that is just a reference to the current Main Controller.

我想把用户交互与转场动画的progress绑定在一起。所以,我们来复习以下这个操作需要的代码。打开这个文件TransitionManager.m。

这个方法setMainController是mainController属性的setter方法,他是用来标示是当前的controller的。

1
2
3
4
5
6
7
8
9
- ( void )setMainController:(MainViewController *)mainController{
     
     _mainController = mainController;
     UIScreenEdgePanGestureRecognizer *panGesture = [[UIScreenEdgePanGestureRecognizer alloc ]initWithTarget: self  action: @selector (gestureHandler:)];
     panGesture.edges = UIRectEdgeLeft;
     
     [[ self .mainController.view window] addGestureRecognizer:panGesture];
     
}

While we set this property we attach a gesture recognizer for theUIScreenEdgePanGestureRecognizer to the window view and we set its side as left.

Note: we use the window view because that way the gesture is recognised in the entire application. How to set the recogniser obviously depends on your specific needs.

At this point, when user moves his finger from the left side of the screen to the right, the gesture handler is called.

我们设置这个属性,来绑定UIScreendgePanGestureRecognizer到window的view上,并设置边界为left。

注意:我们设置成window view是因为在那种情况下,这个手势是整个程序中都能识别的。如何设置这个手势取决于你自己的需求。

在这时,当用户在屏幕左端移动手指到屏幕右端,这个手势就触发了。

UIPERCENTDRIVENINTERACTIVETRANSITION(百分比驱动型动态交互动画

Now that a part of the user interactions is tied to the transitionManager it’s time to grab this information and put it to good use.

我们已经把用户的交互绑定到了transitionManager中,是时候来抓取信息使用了。

I previously mentioned the UIViewControllerInteractiveTransitioning, but as you can see the TransitionManager is not implementing it. It is, in fact, subclassing theUIPercentDrivenInteractiveTransition.

我之前提过了方法UIViewControllerInteractiveTransitioning,但是,这个TransitionManager没有实现他。因为,事实上,他是继承至UIPercentDrivenInteractiveTransition的。

From the documentation:

这个是官方文档的描述:

`A percent-driven interactive transition object drives the custom animation between the disappearance of one view controller and the appearance of another. It relies on a transition animator delegate (a custom object that adopts the UIViewControllerAnimatorTransitioning protocol) to set up and perform the animations.`

这个百分比驱动的交互转场对象可以酷动自定义的动画,介于一个controller将要消失以及另外一个controller将要出现。他以来与一个转场动画器的代理,来设置以及执行这些动画。

This class has 3 important methods that work together with the gesture handler to drive the animation.

这个类有着3个方法,一起配合手势来驱动这个动画效果。

• updateInteractiveTransition: used to set the progress of the transition from 0.0 to 1.0.设置进程百分比(从0.0到1.0)

• cancelInteractiveTransition: in case we wanted to abort the transition (for example when the user aborts the gesture)放弃动画

• finishInteractiveTransition: to mark that the transition can be completed in cases when the user only partially completes the gesture (but we want to assume he intends to complete the transition).完成动画

So, having already created the animation (it is described in the animateTransition: method), we now build the gesture handler that, together with the UIPercentDrivenInteractiveTransition method, is going to make the interaction work.

所以,我们已经创建了这个动画(在这个方法animateTransition:中),现在,我们来建一个手势来控制它,一起配合UIPercentDrivenInteractiveTransition这个方法,来实现交互效果。

THE GESTURE RECOGNIZER HANDLER(手势识别以及控制

Stay in the TransitionManager.m file and check the gestureHandler function.

进入TransitionManager.m文件中,查看下gestureHandler方法。

This is a standard gesture handler that, in this case, has to recognize pan gestures from the left side of the screen, nothing special.

这是一个标准的手势,在这个情形下,必须识别拖拽手势,从屏幕的左侧开始,没有什么特别的。

When the gesture state is UIGestureRecognizerStateChanged we instantiate the modalController using the same routine we adopt for the animated custom transition:

当这个动画的状态变为UIGestureRecognizerStateChanged,我们实例化这个modalController,使用同样的路径来改变这个动画:

1
2
3
4
5
6
7
8
9
10
// Instantiate the modal controller
self .modalController = [[ModalViewController alloc ] init ];
self .modalController.transitioningDelegate = self ;
self .modalController.modalPresentationStyle = UIModalPresentationCustom;
// Here we could set the mainController as delegate of the modal controller to get/set useful information
// Example: self.modalController.delegate = self.mainController;
// Present the controller
[ self .mainController presentViewController: self .modalController animated: YES  completion: nil ];

1) set a transition delegate (in this case, the TransitionManager itself).设置一个transition协议

2) set the modal presentation style to UIMoldaPresentationCustom.设置这个modal的展示风格为UIMoldaRresentationCustom

Note: in the previous tutorial I set this property to the mainController. Mistake. Fixed.

3) present the modalController from the mainController从mainController来展示这个modalController

Whit the gesture state UIGestureRecognizerStateChanged we just convert the touch location into a value ranging from 0 to 1 as it was shown in the previous image. In this code we take as reference the whole screen. So the left side is 0 and the right side is 1.

通过这个手势的状态值,我们将手势的位移转换成一个从0到1的值,刚好覆盖了整个屏幕。所以左侧刚好是0而右侧刚好是1。

1
2
CGFloat animationRatio = location. x  / CGRectGetWidth([ self .mainController.view window]. bounds );
[ self  updateInteractiveTransition:animationRatio];

With these 2 rows we are translating the finger position to the progress of the animation.

用这两行代码,我们将手指的位移转换成了animation的progress。

Last but not least, the state UIGestureRecognizerStateEnded. Within this state we check wether the user wants to cancel the transition or complete it. To check user intention we just take into account the gesture velocity – not to be confused with the speed, velocity can be intended as the direction -.
If the direction is right we complete the transition otherwise we cancel it.

最后但不是很重要的,就是这个状态UIGestureRecognizerStateEnded。通过这个状态,我们检查这个用户是否想取消这个动画或者是完成他。为了检查这个,我们只需要考虑手势的速率。不要与速度混淆了,速率可以被看做是方向。

如果这个方向是对的,我们完成这个动画,如果不是,就取消他。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 3. Complete or cancel the animation when gesture ends
else  if  (recognizer.state == UIGestureRecognizerStateEnded) {
     //[self.finger removeFromSuperview];
     
     if  ( self .transitionTo == MODAL) {
         
         if  (velocity. x  > 0) {
             [ self  finishInteractiveTransition];
         }
         
         else  {
             [ self  cancelInteractiveTransition];
         }
         
         self .modalController = nil ;
     }
     
}

At this point we have implemented the interactivity with the transition and it works like a charm.

最后,我们实现了这个动态交互的转场动画,他运行得不错哦,亲。

FINAL NOTES(最后的说明

You can see that the transition now works in two different ways.

如今这个转场动画有两种方式了。

The presentation uses the interactive transition, while the dismiss keeps the previous custom transition, but both use the same animation! This means that you can create a really complete user experience mixing together a full user interaction with some driven call to action (like a button to dismiss the current controller).

展示controller时使用了实时动态交互,同时,推出controller时能保持自定义的动画效果,这两个都用了同样的动画!这意味着,你可以创建一个完整的用户体验,混杂了一个完全的用户驱动动画或者普通动画形式。

Have fun with transitions and show me your results pinging me on Twitter!

如果你用到了这个,在Twitter上告知我吧。

这篇关于INTERACTIVE TRANSITIONS 实时动态动画的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1139111

相关文章

C#如何动态创建Label,及动态label事件

《C#如何动态创建Label,及动态label事件》:本文主要介绍C#如何动态创建Label,及动态label事件,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#如何动态创建Label,及动态label事件第一点:switch中的生成我们的label事件接着,

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

MyBatis 动态 SQL 优化之标签的实战与技巧(常见用法)

《MyBatis动态SQL优化之标签的实战与技巧(常见用法)》本文通过详细的示例和实际应用场景,介绍了如何有效利用这些标签来优化MyBatis配置,提升开发效率,确保SQL的高效执行和安全性,感... 目录动态SQL详解一、动态SQL的核心概念1.1 什么是动态SQL?1.2 动态SQL的优点1.3 动态S

mybatis-plus 实现查询表名动态修改的示例代码

《mybatis-plus实现查询表名动态修改的示例代码》通过MyBatis-Plus实现表名的动态替换,根据配置或入参选择不同的表,本文主要介绍了mybatis-plus实现查询表名动态修改的示... 目录实现数据库初始化依赖包配置读取类设置 myBATis-plus 插件测试通过 mybatis-plu

基于Canvas的Html5多时区动态时钟实战代码

《基于Canvas的Html5多时区动态时钟实战代码》:本文主要介绍了如何使用Canvas在HTML5上实现一个多时区动态时钟的web展示,通过Canvas的API,可以绘制出6个不同城市的时钟,并且这些时钟可以动态转动,每个时钟上都会标注出对应的24小时制时间,详细内容请阅读本文,希望能对你有所帮助...

Vue中动态权限到按钮的完整实现方案详解

《Vue中动态权限到按钮的完整实现方案详解》这篇文章主要为大家详细介绍了Vue如何在现有方案的基础上加入对路由的增、删、改、查权限控制,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、数据库设计扩展1.1 修改路由表(routes)1.2 修改角色与路由权限表(role_routes)二、后端接口设计

前端 CSS 动态设置样式::class、:style 等技巧(推荐)

《前端CSS动态设置样式::class、:style等技巧(推荐)》:本文主要介绍了Vue.js中动态绑定类名和内联样式的两种方法:对象语法和数组语法,通过对象语法,可以根据条件动态切换类名或样式;通过数组语法,可以同时绑定多个类名或样式,此外,还可以结合计算属性来生成复杂的类名或样式对象,详细内容请阅读本文,希望能对你有所帮助...

Nginx实现动态封禁IP的步骤指南

《Nginx实现动态封禁IP的步骤指南》在日常的生产环境中,网站可能会遭遇恶意请求、DDoS攻击或其他有害的访问行为,为了应对这些情况,动态封禁IP是一项十分重要的安全策略,本篇博客将介绍如何通过NG... 目录1、简述2、实现方式3、使用 fail2ban 动态封禁3.1 安装 fail2ban3.2 配

Vue3中的动态组件详解

《Vue3中的动态组件详解》本文介绍了Vue3中的动态组件,通过`component:is=动态组件名或组件对象/component`来实现根据条件动态渲染不同的组件,此外,还提到了使用`markRa... 目录vue3动态组件动态组件的基本使用第一种写法第二种写法性能优化解决方法总结Vue3动态组件动态

Android 悬浮窗开发示例((动态权限请求 | 前台服务和通知 | 悬浮窗创建 )

《Android悬浮窗开发示例((动态权限请求|前台服务和通知|悬浮窗创建)》本文介绍了Android悬浮窗的实现效果,包括动态权限请求、前台服务和通知的使用,悬浮窗权限需要动态申请并引导... 目录一、悬浮窗 动态权限请求1、动态请求权限2、悬浮窗权限说明3、检查动态权限4、申请动态权限5、权限设置完毕后