问题标签 [animatewithduration]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
2028 浏览

objective-c - 动画 UIVisualEffectView 模糊半径?

正如标题所说,有没有办法为 UIVisualEffectView 的模糊半径设置动画?我在视图后面有一个动态背景,所以不能使用 ImageEffects 添加...据我所知,唯一可以做到这一点的是动画不透明度,但 iOS 抱怨说这样做会破坏 EffectView 所以它肯定似乎是个坏主意...任何帮助将不胜感激。

0 投票
0 回答
279 浏览

swift - Animation reversing for View X value in animateWithDuration

Why would this alpha in the blur view, but take the gameView, move it off scree and then animate back on the screen?

I thought I was giving the end point of the animation?

It's almost reversing the center x value. Instead of sending it off screen, it’s bringing it back on to the screen. I want to move the UIView off the screen, not move it out and then slide it back into view.

0 投票
2 回答
573 浏览

ios - 递归animateWithDuration:动画:完成:方法iOS

我试图让我的项目每 3 秒“发光”一次,将其 alpha 从高值更改为低值并返回。然而,它“闪烁”并且基本上每 0.2 秒从一种颜色随机变化一次。我已经粘贴了下面的方法。它可能与何时调用完成但不确定有关?

0 投票
3 回答
1014 浏览

swift - Swift 中的 animateWithDuration - 找不到成员“CurveEaseOut”

尝试在 Swift 中将变量传递给我的动画时出现以下错误:

如果我手动输入度数,我的代码看起来不错:

但是如果我尝试使用变量,我会遇到问题:

也许这是我对 Double() 的使用?我尝试了各种不同的类型,但找不到解决方案。

0 投票
1 回答
612 浏览

ios - 动画 UICollectionView,但单元格消失

我的代码是这样的

当动画尚未结束时,单元格会立即消失。为什么?如何让单元格跟随集合视图动画消失?谢谢 !

0 投票
1 回答
178 浏览

ios - 快速旋转视图暂停

我想做无限旋转。但我看到一个旋转的停顿。你能解释一下为什么吗?

0 投票
3 回答
424 浏览

ios - 使用 animatewithduration 移动图像视图

我正在尝试多次移动图像。这就是我尝试实现它的方式。

然而 animatewithduration 方法只执行其中一个动作。有没有办法为图像视图的所有三个动作设置动画?谢谢。

0 投票
3 回答
440 浏览

ios - 在 Swift 中增加 UIView.animateWithDuration 中的参数

我有一个 IBOutlet 按钮集合,我试图按顺序在屏幕上显示。他们都从屏幕开始很好,但是当他们动画时,我希望每个按钮在前一个按钮之后 0.05 秒出现在屏幕上。我不知道如何增加 UIView.animateWithDuration 中的延迟。使用下面的代码,它们都同时在屏幕上制作动画。

0 投票
1 回答
608 浏览

ios - 如何将 CABasicAnimation 转换为 UIView animatewithDuration

我想将 CABasicAnimation 转换为 UIView animatewithDuration ,如果有可能这样做?

到目前为止,这是我尝试过的代码

要在[UIView animateWithDuration...。(而不是CABasicAnimation,我希望它在animationWithDuration块中animations。)

这可能吗?如果是这样,怎么做?

提前致谢

0 投票
2 回答
10198 浏览

ios - 如何向 UIView animateWithDuration 添加反弹效果

我正在尝试为下面的动画添加反弹效果。这是我的代码:

它无法正常工作。它在动画结束时变宽,然后恢复正常。我希望宽度反弹到小于 1.0 的值,不超过 1.0。