问题标签 [pause]
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.
javascript - Javascript 暂停 - 禁用一个功能,直到另一个功能完成
我有两个功能,第一个选择东西,另一个延迟评估它,如下所示:
问题是,选择功能应该被禁用,直到第二个完成。我知道完全暂停 Javascript 是不可能的,但是当另一个函数正在等待或工作时触发的第一个函数会严重搞砸一切。我已经尝试将代码移动到其他功能并延迟这些功能,但没有任何效果。
提前致谢!
performance - Does the branch predictor also include I/O instructions in its prediction?
I am currently writing an Intel 8042 driver and have written two loops to wait until some buffers are ready for use:
As you can see, I inserted pause
instructions in the loops. I've just recently learned about it and wanted to try it out, naturally.
Since the content of %al
is unpredictable because it's an I/O read, the branch predictor will fill the pipeline with instructions of the loop: after some iterations, it will notice always one branch is taken, similarly to the case here.
The above is correct if the branch predictor really includes I/O instructions in its prediction, which I am not sure of.
So does the branch predictor adjust itsself using the result of I/O instructions as is the case with unpredictable memory reads? Or is there something else going on here?
Does pause
make sense here?
ios - Swift,SpriteKit - 暂停整个脚本
是否可以使用 GameViewController 中的代码暂停 GameScene 中的整个脚本?我不想延迟/暂停线程。有多个活动和功能同时进行,我想暂停一切。
我也希望能够在暂停后恢复。
例如,在 GameViewController 中:
和
先感谢您。
javascript - 如果我的鼠标不在按钮中,为什么我可以单击按钮?
我正在制作一个带有暂停按钮的 js 游戏。该按钮工作正常,但是如果我的鼠标进入按钮,离开,然后单击,就会触发效果。这是我的代码:
问题是鼠标不必在按钮中,它只需要在其中一段时间。我怎样才能做到这一点,以便鼠标必须在里面并点击?
javascript - 窗口最小化时 HTML 视频暂停
我有一个包含视频的 html 文件。我想添加一项功能,以在窗口最小化或浏览器上的选项卡更改时暂停视频。
如何将该功能添加到我的 html 中?
我添加了 javascript 功能,但视频仍在任何情况下播放
编辑:分享我的代码。
javascript - Pause Iframe video when window is minimized or the tab is changed
I achieved that for default html videos thanks to my question: HTML video pause when window is minimized
But now I started to use a video preparation application that generates videos with some additional features(subtitles, search in subtitle etc...)
And the html file generated by that application includes IFrame. I tried onfocus()-offocus() function on Iframe but it did not worked. I could not achieve pausing video when the tab is changed or window is minimized.
Here is default code that is generated by video preparation tool. How can apply that solution (in the link at the beginning) to this code ? What is the difference between IFrame object and video for javascript?
not: This is the first html file that I run to open page with videos. It calls other files. I am not sure whether you need these files to see or not.
swift - 在 Mac 上的 Swift 中暂停当前正在播放的音乐
有没有办法能够访问 Apple 键盘上的 F7、F8 和 F9 键在 Mac OS X 的 Swift 中具有的相同功能,因为我希望能够创建一个按钮来暂停当前播放的曲目Spotify 或 iTunes,然后再次播放。
slider - 光滑的滑块轮播在页面加载之前开始
修改我的问题,当然希望有人能提供帮助。我设置了光滑的滑块。我还使用 Foundation Zurb“选项卡”功能,因此打开一个页面,顶部带有选项卡以进行导航。由于整个页面加载,因此初始页面加载(例如滑块)触发的任何内容都会开始运行,即使人们没有查看该选项卡 - 并且在图像本身完全加载之前。我需要的是滑块开始通过幻灯片组自动旋转,并在完成一个循环时在第一张幻灯片上停止。滑块本身正在工作 - 这是我不知道该怎么做的初始启动功能。我希望在实际滑块的函数调用中有一些方法可以做到这一点,但我只是不知道要使用哪些 javascript 函数。
我现在对滑块的函数调用如下。但是当人们单击选项卡时,它从幻灯片 1 开始,但幻灯片从未显示,因为在有人移动到该页面后它仍在尝试加载图像。然后它打开幻灯片 2 并通过浏览剩余的幻灯片并返回到一张并停止正确完成。
android - 启动后续活动时当前活动不暂停 (Android)
考虑代码:
如您所料,在运行该代码时,当前活动会在后续活动(电话拨号器)运行时自行暂停。当电话结束时,原来的活动会重新弹出。
当我希望引入一个在通话后弹出的“评级”对话框时,我的问题就出现了。
我会在哪里插入这样的代码?好吧,如果我们直接在行之后插入它,“startActivity(intent);” 这与取消注释最后一行(吐司)相同(?)。如果这样做,您将看到代码在“startActivity(intent);”行之后继续运行 -- 通话过程中出现吐司。
那么我们如何防止代码继续运行呢?
您可以看到我也尝试插入“onPause()”,但这似乎也不起作用。
我了解 Android 生命周期,所以我能想到的唯一方法是将新的对话框代码放入 onResume()... 但我还必须执行以下操作:
但似乎必须有更好的方法。谢谢你的帮助!