Home Web Front-end HTML Tutorial [We all love Paul Hegarty] Stanford IOS8 open class personal notes 41 Animation animation_html/css_WEB-ITnose

[We all love Paul Hegarty] Stanford IOS8 open class personal notes 41 Animation animation_html/css_WEB-ITnose

Jun 24, 2016 am 11:40 AM

There are the following types of animations in IOS:

The first one is to add animation to the elements of UIView.
The second is the animation of the controller, such as the usage of the navigation controller introduced before.
The third one is Core Animation, which is a very powerful framework, but is beyond the scope of this course.
The fourth type is Dynamic Animation, which is based on the physical characteristics of the device, such as shaking the phone, changing direction, etc.
This article will explain the first situation:

Animation effects can be achieved using attributes such as frame, transform, and alpha.
You can call methods of UIView to set animations. There are closures in the parameters of these methods that can help us set the above properties of UIView. The code in the closure is executed immediately when the method is called. Some methods also have parameters named Closure of completion. In this closure, you can set the operation after the Animation is completed. For example, the following method declaration:

The usage is as follows:

The transparency of myView was originally 1. Now we call the method animateWithDuration. The only operation performed in animations is to set myView to be fully transparent. . The meaning of the first parameter 3.0 is that this transparent process will be completed within 3 seconds, and the meaning of the second parameter 2.0 is that the animation will be delayed by 2S. The third parameter options will be used in all animation methods. It is an enumeration indicating different animation types, which will be discussed later.
Animations are the operations we need to perform. Completion is the operation after completion. I just saw in the definition that the completion closure has a Boolean parameter, so $0 is used directly instead to indicate that the previous code has been executed. In this closure, Delete myView from the parent view collection to achieve true deletion.
In addition to using animateWithDuration to modify the attributes of the view, if you want to implement animations such as flipping, it cannot be achieved by relying on the three attributes above. At this time, there are special methods to choose from:

Usage example:

If you need to change the level of View, use the following method:

Copyright statement: This article is an original article by the blogger and has not been authorized. Reprinting is not allowed with the permission of the blogger.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

How do I use HTML5 form validation attributes to validate user input?

How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

How to efficiently add stroke effects to PNG images on web pages?

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

What are the best practices for cross-browser compatibility in HTML5?

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

What is the purpose of the <meter> element?

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

What is the purpose of the <datalist> element?

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

What is the purpose of the <iframe> tag? What are the security considerations when using it?

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

How do I use the HTML5 <time> element to represent dates and times semantically?

See all articles