英文:
How do i increase the size of the typed.js typing symbol
问题
打字符号在typed.js中太小了。我如何调整它?
我找不到任何可以更改打字符号大小/比例的选项。
此外,这是typed的代码。如果您知道答案,请相应地调整代码。
var typed = new Typed('#typing', {
strings: ['程序员', '游戏开发者', '网页开发者', '玩家', '设计师'],
typeSpeed: 100,
loop: true,
backSpeed: 100,
});
英文:
The typing symbol is too small in typed.js. How do I adjust this?
I couldn't find any options that change the size/scale of the typing symbol
Also here is the typed code. Kindly adjust the code accordingly if you know the answer
var typed = new Typed('#typing', {
strings: ['Programmer', 'Game Developer', 'Web Developer', 'Gamer', 'Designer'],
typeSpeed: 100,
loop: true,
backSpeed: 100,
});
答案1
得分: 0
你可以为 typed-cursor
类添加与打字元素相同的 font-size
样式。
.typed-cursor {
font-size: 2em;
}
请注意,上述代码中的 CSS 部分已被翻译。
英文:
You can style the typed-cursor
class to give it the same font-size
as the typing element.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
new Typed('#typing', {
strings: ['Programmer', 'Game Developer', 'Web Developer', 'Gamer', 'Designer'],
typeSpeed: 100,
loop: true,
backSpeed: 100,
});
<!-- language: lang-css -->
#typing {
font-size: 2em;
}
.typed-cursor {
font-size: 2em;
}
<!-- language: lang-html -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.10/typed.js" integrity="sha512-tQQXRDB2wEmuJGtFrmmoFYzNTq8StA1XJrfO0OQbbTxd9G0CwaTDL6/C1y805IlvBVrMwOqob1kf6r/2U5XXVg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<span id="typing"></span>
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论