- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个打字动画JS,这里有两个功能正常工作type()
当我们点击类型按钮和 erase()
时的功能当我们点击删除按钮时的功能。
但现在我想在这里创建一个新函数 Erase and Retype
意味着我想要 - 当句子完全输入然后如果我们点击Erase and Retype
按钮,然后它应该被删除并重新输入一次。
var captionLength = 0;
var caption = '';
$(document).ready(function () {
captionEl = $('#caption');
$('#test-typing').click(function () {
testTypingEffect();
});
$('#test-erasing').click(function () {
testErasingEffect();
});
});
function testTypingEffect() {
caption = $("#qqq").html();
type();
}
function type() {
captionEl.html(caption.substr(0, captionLength++));
if (captionLength < caption.length + 1) {
setTimeout('type()', 5);
} else {
captionLength = 0;
caption = '';
}
}
function testErasingEffect() {
caption = captionEl.html();
captionLength = caption.length;
if (captionLength > 0) {
erase();
} else {
$('#caption').html("You didn't write anything to erase, but that's ok!");
setTimeout('testErasingEffect()', 1000);
}
}
function erase() {
captionEl.html(caption.substr(0, captionLength--));
if (captionLength >= 0) {
setTimeout('erase()', 5);
} else {
captionLength = 0;
caption = '';
}
}
<div id="qqq">this is some example sentence which I want to </div>
<input type="button" id="test-typing" value=" Type" />
<input type="button" id="test-erasing" value="Erase" />
<input type="button" id="test-erase-and-retype" value="Erase & Retype" />
<br><br>
<span id="caption"></span>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
$('#test-erase-and-retype').click(function () {
testErasingEffect(function () {
testTypingEffect();
});
});
使用 when 和 then 条件:
$('#test-erase-and-retype').click(function () {
$.when(testErasingEffect()).then(testTypingEffect());
});
和这个
$('#test-erase-and-retype').click(function () {
function firstFunction(){
testErasingEffect();
}
function secondFunction(){
testTypingEffect();
}
firstFunction();
});
但是所有这些都不起作用,这只会删除文本而不是重新输入。
最佳答案
首先,有一个链接,我在其中获取了有关 adding waiting time into loop 的代码.
其次,我重写了你的代码。您可以对此投反对票,但在我看来,它对您的项目来说更清洁、更容易操作。
$(document).ready(function () {
$('#test-typing').click(function () {
type();
});
$('#test-erasing').click(function () {
erase();
});
$('#test-erase-and-retype').click(function () {
loop();
});
});
const timer = ms => new Promise(res => setTimeout(res, ms));
const wait = 15;//set the waiting time between adding/removing caracters
async function type() {
while(document.getElementById('caption').innerHTML.length < document.getElementById('qqq').innerHTML.length) {
document.getElementById('caption').innerHTML += document.getElementById('qqq').innerHTML.charAt(document.getElementById('caption').innerHTML.length);
await timer(wait);
}
}
async function erase() {
while(document.getElementById('caption').innerHTML.length > 0) {
document.getElementById('caption').innerHTML = document.getElementById('caption').innerHTML.slice(0, -1);
await timer(wait);
}
}
async function loop() {
await erase();
await type();
}
<div id="qqq">this is some example sentence which I want to </div>
<input type="button" id="test-typing" value=" Type" />
<input type="button" id="test-erasing" value="Erase" />
<input type="button" id="test-erase-and-retype" value="Erase & Retype" />
<br><br>
<span id="caption"></span>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
$('#test-typing').click(function () {
if (document.getElementById('caption').innerHTML.length > 0) {
document.getElementById('caption').innerHTML = '';
}
type();
});
通过以下代码,您可以了解如何开始重用您的代码。这是可扩展的。而且,在我看来,它更容易使用,因为每件事都被分离成一个代码块,你可以更快地操纵发生的事情。
const timer = ms => new Promise(res => setTimeout(res, ms));
const wait = 15;//set the waiting time between adding/removing caracters
async function clickEventType(container, stringToType) {
if (document.getElementById(container).innerHTML.length > 0) {
// document.getElementById(container).innerHTML = '';// You can simply flush the container
var response = await erase(container);// You can also make a call on erase container, which will do the same as the loop...
} else {
var response = true;
}
if (response !== undefined) {
await type(container, stringToType);
}
}
async function type(container, stringToType) {
while(document.getElementById(container).innerHTML.length < document.getElementById(stringToType).innerHTML.length) {
document.getElementById(container).innerHTML += document.getElementById(stringToType).innerHTML.charAt(document.getElementById(container).innerHTML.length);
await timer(wait);
}
return true;
}
async function erase(container) {
while(document.getElementById(container).innerHTML.length > 0) {
document.getElementById(container).innerHTML = document.getElementById(container).innerHTML.slice(0, -1);
await timer(wait);
}
return true;
}
async function loop(container, stringToType) {
var response = await erase(container);
if (response !== undefined) {
await type(container, stringToType);
}
}
<div id="qqq">this is some example sentence which I want to </div>
<div id="qq2">Another cool sentence where you can use style="display: none;"</div>
<div id="qq3" style="display: none;">This is the coolest sentence!?</div>
<input type="button" onClick="clickEventType('caption', 'qqq')" value="Type qqq into caption"/>
<input type="button" onClick="clickEventType('caption2', 'qq2')" value="Type qq2 into caption2"/>
<input type="button" onClick="erase('caption')" value="Erase caption"/>
<input type="button" onClick="clickEventType('caption', 'qqq')" value="Loop qqq into caption"/>
<input type="button" onClick="clickEventType('caption2', 'qq3')" value="Type qq3 into caption2"/>
<br><br>
<div><span id="caption"></span></div>
<div><span id="caption2"></span></div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
关于javascript - 删除()函数完成时如何执行类型()函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66223966/
我试图找到在庞大的代码库中创建 NaN 的位置。是否有一些编译器标志或我可以用来在 NaN 上 panic 的东西,这样我就可以找到它在哪一行? 最佳答案 没有编译器标志。你能做的最好的事情就是把你的
A类 class ClassA { @Autowired class ClassB; } 类配置: @Configuration class TestConfi
我是一名统计学研究生,经常使用 R。我熟悉其他编程环境中的 OOP。我什至在各种定义用于存储数据的新类的统计包中看到了它的使用。 在我研究生生涯的这个阶段,我通常会为一些类作业编写一些算法——一些接收
我想要两个不同的网络摄像头视频输出,一个是普通的网络摄像头镜头,另一个是它的“镜像”版本。 cv2可以吗? import time, cv2 video=cv2.VideoCapture(0) a=0
我创建了一个可以通过两种方式过滤的图库。一个通过单击按钮,另一个通过搜索过滤器。过滤器工作完美,除了当 div 隐藏在过滤器上时,其余显示的 div 不会彼此相邻 float 。 这是过滤前的样子:
我们作为一个 4 人团队工作,我们的项目部署在 openshift我们使用 git 存储库 进行提交、推送和 pull 。当有人提交更多更改时,其他人必须 pull 它以在我们的系统中进行更新。但是从
我正在尝试扩展自动完成功能,以便在选择某个项目时显示辅助标签。例如,给定显示项目的自动完成功能,项目名称将显示在包含代码的输入框旁边的 span 标记中。 查看自动完成源代码,我发现过滤值的下拉列表是
我有一个包含歌曲、艺术家和专辑实体的核心数据。 歌曲有可选的一对一关系艺术家到艺术家实体和专辑到专辑实体这两个实体都与 Song 实体具有反向关系。 相册有可选的一对一关系艺术家到艺术家实体和可选的一
XmlSerializer正在调用 IList.Add()在我的课上,我不明白为什么。 我有一个自定义类(层次结构中的几个类之一),其中包含我使用 XmlSerializer 与 XML 相互转换的数
我们在 Web 应用程序中定义了此事件,它创建了一个名为 timelineEventClicked 的自定义触发器 canvas.addEventListener('click', function
有大量资源可用于使用 Swift(可达性)检查有效的 Internet 连接,以及在进行 API 调用时检查 httpResponse 的 statusCode 的方法,但是检查和处理这些的“正确”方
谁能告诉我是否可以在 Controller 规范中 stub params[] 值,以便 Controller 接受 stub 值作为 View 中的实际 params[] 值。 例如,我的观点有一个
我的问题是没有在 UserControl 中连接 DependencyProperties。这不是问题。当我将 UserControl 中的按钮绑定(bind)到 UserControl 的 Depe
如何#define 路径 L"C:\Windows\System32\taskmgr.exe"来处理宽字符 #define TASK_MGR "C:\\Windows\\System32\\taskm
我正在尝试使用 Jasmine 和 Sion 编写单元测试,但是在使用 RequireJs 加载模块时我很难找到以下等效项: sinon.stub(window, "MyItemView"); 使用
我有一个包含三个 div 的示例页面,如下所示: 当浏览器大小达到 md 点并且第二个 div 高于第一个 div 时,第三个 div 开始在第一个的右侧
我在 C++ 端有 CString cs,在 C# 端有 IntPtr ip,它通过编码(marshal)处理机制包含 cs 的值。 然后,我只需将需要的字符串作为 Marshal.PtrToStri
我是一名优秀的程序员,十分优秀!