gpt4 book ai didi

javascript - typed.js 文本中的链接

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:16:56 24 4
gpt4 key购买 nike

如何将链接放入 typed.js 脚本中?我需要联系我,链接到联系页面。

    <script src="js/typed.js"></script>
<script>
$(function(){
$(".element").typed({
strings: ["Welcome to my Website.", "Random text... Contact me"],
typeSpeed: 0
});
});
</script>

**HTML**

<div class="col-md-12 col-xs-12">
<h1 class="element"></h1>
</div>

最佳答案

使用回调参数。

示例:

$(function() {
$('#awesome').typed({
strings: ["Welcome to my Website.", "Random text... Contact me"],
typeSpeed: 0,
callback: function() {
$('#awesome').html('<a href="#">' + $('#awesome').html() + '</a>')
}
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://raw.githubusercontent.com/mattboldt/typed.js/master/js/typed.js"></script>

<div class="col-md-12 col-xs-12">
<h1 class="element" id="awesome"></h1>
</div>

关于javascript - typed.js 文本中的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26972121/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com