问题标签 [rotateanimation]
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.
java - How do I get an imageview animation (repeat infinty, duration unchangeable) to run for a fixed amount of time?
I have a RotateAnimation running on an imageview object.
This animation makes the object rotate at the rate of (myAnimation.setDuration(x)) per rotation.
I have quite a few of the objects and animations rotating at different rates, all objects set to repeatCount(INFINITY).
I want to be make all of them do their thing for a fixed duration (ie: 3 rotating objects, object 1 does 5 turns, object 2 does 20.33 turns, and object 3 does 0.4 turns).
/e It is also important that the position of each object at the end of the countdown is saved somewhere/returned, as I will start another rotate animation from those coordinates.
Also note, all these rotations are done about each object's own center, so by coordinates I mean degrees!
Anyone have any ideas?
Thanks!
android - Android set Pivot 方法是否有效?
我有两个ImageViews
位于另一个之上,并且都位于frameLayout
. 据我所知,我们添加的任何内容都将位于frameLayout
屏幕的左上方,我们可以通过为它们设置 a 来设置它们的位置padding
,所以我已经paddings
为两者设置了ImageViews
.
我想旋转我的ImageViews
,我几乎完成了。我唯一还没有做的是枢轴的位置。
我想在我的ImageViews
. 我尝试了很多数字,但没有得到答案,甚至没有弄清楚该方法是如何工作的。我的意思是我不知道它作为参数得到的数字是多少。那是pixels
什么?(我在方法中调用动画onCreate
方法,所以我不能使用getWidth()
和getHeight()
方法,所以我输入这些方法自己返回的数字。)
java
我什至尝试过不同的地方来设置支点XML layout
。但这并没有带来任何改变。
我想知道的是如何在我的ImageView
使用setPivot
方法的中心底部设置枢轴点?(它们似乎不是工作方法)在onCreate
方法中设置点可能是问题吗?如果是,我怎样才能使它起作用onCreate
?
android - Android 动画转弯
我正在使用以下代码进行一系列转弯(左转或右转)。因此,如果我一个接一个地调用它,即:turn(90); turn(90); turn(-90);
它显示的只是最后一个。我想把它们都展示出来,它会等到第一个完成后再继续下一个。有任何想法吗?
android - 如何降低Android中RotateAnimation的速度
如何降低 RotateAnimation 实例的旋转速度。我正在使用以下代码片段来制作动画。
css - CSS3 rotate3d动画重复
我有这个动画:
我希望正方形以一种方式无限旋转。目前它在从 0 到 360 的所有轴上旋转,然后从 360 以相同的方式旋转到 0。我希望它继续单向运行,而不是自行返回。
我见过很多连续旋转的例子,但大多数都使用旋转或变换,而不是rotate3d。是否可以使用 CSS rotate3D 无限旋转某些东西?
android - Rotate imageview stuck
I want to create a simple image which rotates 20 degrees (like clock) and 20 degrees back. I have this simple layout:
and this activity
what am I doing wrong and my image is not rotating? i've tried a lot of tutorials and nothink worked :(
windows - 在 vpython 中编程,vpython 对代码没有反应
我想制作一个程序,在 vpython 中显示达芬奇塔,我想我得到了正确的代码,可以像在达芬奇塔中一样按顺序旋转楼层。但是 vpython 没有响应。我做错了什么?有人可以帮忙吗?
actionscript-3 - AS3 - 在 Flash 工具模式中拖动和旋转的工具
我正在制作一个应用程序/程序,允许您通过单击 UI 上的按钮来设计具有两个基本功能的自己的艺术作品,我们现在称之为“模式”。
镊子模式:您可以在此模式下拖动选定的一组对象。 旋转模式:这允许您在舞台上旋转一组特定的影片剪辑。
分配它。我想要它,以便当旋转模式或镊子模式处于活动状态时,另一个被禁用(启用 = 假)或达到这种效果。我已经到了一个岔路口,我需要在方法轮换或方法镊子下将它们分组。当单击镊子时,您可以(仅)移动东西,并且选择旋转模式时,您可以旋转电影剪辑...(仅)它可以正常工作,直到您从旋转模式退回旋转模式后,您仍然可以旋转电影剪辑!任何人都可以对此有所了解,所以当我离开此模式时,您仍然可以旋转它吗?任何人都可以建议组织这种功能的最佳方式吗?
感谢您的帮助 - 我是 AS3 新手。
android - 使用 Android 动画从中心向右滚动
我希望我的ImageView
滚动从屏幕中心向右。我目前使用此代码,但它不会滚动图像。
android - Android旋转xml而不进行任何调整
我有一个活动,这是它的布局
main_background 是一个旋转 xml。每个方向有两个 main_background xml
可绘制-hdpi/main_background.xml:
drawable-land-hdpi/main_background.xml :
所以我想使用相同的 .jpg 文件,但水平和垂直方向的旋转不同。例如,当方向更改为水平时,我想将可绘制对象旋转 90 度。但这是我的结果:
垂直方向(这个没有问题):
水平方向(这是我的问题):
我想要什么(没有任何调整大小):
我怎样才能做到这一点 ?