- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
使用 CSS 和 HTML,创建了一个复选框、一个 index
和一个 content
div。index
位置固定, float 在左边。content
将其宽度调整为可用空间,因此它位于 index
旁边。checkbox
在两种状态之间切换::not(:checked)
将索引和内容向右移动。:checked
将索引和内容向左移动,将 index
推离屏幕。
这些移动是 CSS3 动画:moveindexleft
、movecontentleft
、moveindexright
和 movecontentright
。index
和 content
的 animation-play-state
初始设置为 paused
。勾选 checkbox
将其更改为 running
。这是为了防止在页面初始加载后立即播放动画。
在 Firefox 42.0 和 Chromium 47.0.2526.80(64 位)中进行测试,问题是这个初始的 animation-play-state: paused
被忽略了。
结果:https://jsfiddle.net/Lmzyxzhs/
如何让CSS中的animation-play-state
初始设置为paused
,然后改为running
?
注意:如果最初设置为 animation-play-state: paused !important;
,则复选框切换不会覆盖它,禁用所有动画。
此外,在单击复选框并启动动画后似乎有轻微的延迟。这可以优化吗?
最佳答案
animation-play-state
属性没有问题,所有浏览器都不会忽略它。您面临的问题是因为选择器及其工作方式。 :not(:checked)
选择器将匹配复选框的原始/默认状态,这也是因为它未被选中。这与 :not(:checked)
选择器稍后出现在您的 CSS 文件中的事实相结合,并且它比 div#index
或 div 具有更多的特异性#content
选择器使在此 :not(:checked)
选择器(running
)中定义的动画播放状态设置优先。这就是动画也在页面加载时执行的原因。
据我所知,您无法同时实现 (a) 加载时暂停动画和 (b) 当未单独使用 CSS 选择器选中复选框时实现反向动画。在任何给定点,您只能让其中一个起作用。
因此,推荐的解决方案是使用 JavaScript(或任何首选库)并在用户第一次单击复选框时向元素添加一个类。然后 :checked
或 :not(:checked)
样式只有当复选框有这个额外的类时才能应用。
var chkBox = document.getElementById('toggle');
chkBox.addEventListener('click', function(){
this.classList.add('user-interacted');
});
div#index {
position: fixed;
float: left;
width: 10em;
left: 0em;
animation-fill-mode: both;
animation-play-state: paused;
animation-duration: 1s;
}
div#content {
width: auto;
margin-left: 10em;
animation-fill-mode: both;
animation-play-state: paused;
animation-duration: 1s;
}
@keyframes moveindexleft {
0% {
left: 0em;
}
100% {
left: -10em;
}
}
@keyframes movecontentleft {
0% {
margin-left: 10em;
}
100% {
margin-left: 0em;
}
}
@keyframes moveindexright {
0% {
left: -10em;
}
100% {
left: 0em;
}
}
@keyframes movecontentright {
0% {
margin-left: 0em;
}
100% {
margin-left: 10em;
}
}
input[type=checkbox] {
display: none;
}
/* note the change in selectors */
input[type=checkbox].user-interacted:not(:checked) ~ div#index {
animation-play-state: running;
animation-name: moveindexright;
}
input[type=checkbox].user-interacted:not(:checked) ~ div#content {
animation-play-state: running;
animation-name: movecontentright;
}
input[type=checkbox].user-interacted:checked ~ div#index {
animation-play-state: running;
animation-name: moveindexleft;
}
input[type=checkbox].user-interacted:checked ~ div#content {
animation-play-state: running;
animation-name: movecontentleft;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<label for="toggle">
Button
</label>
<input id="toggle" type=checkbox>
<div id="index">
index
</div>
<div id="content">
content
</div>
或者,您可以通过使用 CSS transition
来达到同样的效果(正如 vals in his comment 所指出的)。只有当用户点击复选框时才会触发转换(不像 animation
在页面加载时自动启动)。以下是此方法的示例片段。
div#index {
position: fixed;
float: left;
width: 10em;
left: 0em;
transition: left 1s linear;
}
div#content {
width: auto;
margin-left: 10em;
transition: margin-left 1s linear;
}
input[type=checkbox] {
display: none;
}
input[type=checkbox]:not(:checked) ~ div#index {
left: 0em;
}
input[type=checkbox]:not(:checked) ~ div#content {
margin-left: 10em;
}
input[type=checkbox]:checked ~ div#index {
left: -10em;
}
input[type=checkbox]:checked ~ div#content {
margin-left: 0em;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<label for="toggle">
Button
</label>
<input id="toggle" type=checkbox>
<div id="index">
index
</div>
<div id="content">
content
</div>
关于css - CSS 中的 `animation-play-state` 怎么可以一开始就设置为 `paused` 然后改成 `running` 呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34344692/
所以我的应用程序的评论显示在我的游戏控制台中,但是由于某种原因,当我在 google Play 商店上访问我的应用程序链接并以普通用户的身份查看它时,我没有收到新评论的通知,我的显示了 13 条评论,
一旦我在 2.3 play 项目上运行 'sbt compile',我就不能再使用 'sbt compile' 来编译任何 Play 2.2.x 项目。这是我运行 sbt 命令时的错误。 [info]
我有点困惑,想得到一个解释。 我正在使用 Java Play 2 和 Akka Actor 。我使用 play run 启动系统。 不过,我刚刚看到一个视频,使用了命令: play akka star
当我玩游戏时,我遇到两个选择play.api.mvc和 play.mvc包裹 有什么不同? 最佳答案 从戏! 2 文档: The API available in the play.api packa
从 2.3 迁移到 2.4 后,我收到此错误。我应该使用的正确导入语句是什么? error: value routesImport is not a member of object play.Pla
所以我在 google play 上有一个应用程序已经将近 6 个月了,最近两个月我更新了我的应用程序屏幕截图,从那时起,每次我更新我的应用程序时,我都开始收到应用程序拒绝。 上次我提出上诉并被接受,
我有以下代码: Snapshots.OpenSnapshotResult result; result = Games.Snapshots.open(googleApiClient, "save",
在过去 72 小时内,我为 Google Play 开发者计划支付的 Google 电子钱包付款显示为“您的购买正在处理中”。我知道这可能需要长达 48 小时,但这是他们处理时间最坏情况之后的一整天。
我在 Play 商店发布了应用程序,我不知道为什么应用程序显示预注册,我想为我的用户提供直接下载选项。伸出援手将不胜感激。 最佳答案 instructions for pre-registration
我有一个 PHP 后端,它与 Google Play 服务集成以验证从 APP 进行的购买。购买信息返回收据和签名,我需要验证购买是否正确。 我收到: { ...rest of the data
我在 Google Play Developer Console 上创建了我的 Android 应用程序的草稿。我已经填写了所有需要的信息。必需的步骤之一是“内容评级”。我已填写表格以自动分配 Goo
我已经设置好了 com.typesafe.play play_2.13 2.7.4 在项目 pom.xml 中。但是,当我尝试遵循this tutorial时,语句 pla
我在 Play 商店上发布了一个应用程序,并收到了一些评论。在Google Play开发者控制台中,我在一些评论中看不到应用程序的版本。这是我在“应用程序”标题下找到的内容。 版本代码 — 版本名称
假设 A 是所有者。我希望我们团队的 B、C 和 D 用户能够上传我们应用程序的新版本。这可能吗?来自 this我不太清楚用户有什么样的权限。如果有人对这部分有任何经验,欢迎。 最佳答案 您需要 go
我正在尝试将应用重新提交到 Google Play,但我似乎可以找到一种技术上的方法来实现此目的。 我对“您的应用主要针对 COPPA 定义的 13 岁以下 child 吗?”的回答是肯定的,然后在不
我想分享一下我在分析 Google Play 控制台的新功能时遇到的情况,并尝试找到解决方案。 正如你们许多人可能已经知道的那样,Google 已在 Google Play 控制台上发布了更新并引入了
我有两个用 playframework 编写的应用程序。我想加入另一个。我有一个数据库,我想在它们之间共享我的登录类。应用程序对类、方法、变量使用不同的名称。 我怎样才能实现它?我应该创建 jar 版
对于我的硕士论文,我需要自动将来自 Google Play 的不同 Android 应用程序的信息写入一个文本文件。所以我使用 perl 脚本语言来实现这种自动化。我的 perl 脚本可以在 Goog
我想测试子项目是如何工作的,尤其是 routes在主项目 ( this was not visible before ) 中考虑了子项目的数量。 我在这里阅读了文档: https://github.c
我正在使用 Play 框架 2.1.2,我有一个 handlere 方法返回一个 Promise,如 Play 的 2.1.2 documentation 中所述 但是 Play 抛出编译错误说: C
我是一名优秀的程序员,十分优秀!