如何显示 ► html 中的播放(前进)或实线右箭头符号?
如何在 html 中显示 ► 播放(前进)或实线右箭头符号?
How do I display this ► Play (Forward) or Solid right arrow symbol in html?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
是的,
►
,但它在所有浏览器中看起来可能不一样。Yes,
►
, but it might not look the same in all browsers.如果您需要在 CSS 中使用它,如
这是
►
的 CSS 转换用于这些转换的有用工具:evotech.net/articles/testjsentities.html
If you need to use it in CSS, as in
This is the CSS conversion of
►
A helpful tool for these conversions: evotech.net/articles/testjsentities.html
►
来自 Wolfram Alpha►
from Wolfram Alpha我尝试使用 ascii 代码,但不喜欢它,因为它看起来总是很拉伸。
相反,我在网上找到了一个巧妙的、易于定制的解决方案,它使用 css 并且只操作 border 属性:
I tried using the ascii code but didn't like it as it always looked stretched.
Instead, I found an ingenious easily customizable solution online, that uses css and only manipulates the border property:
以下是您可以使用的一长串内容:
http://brucejohnson.ca/SpecialCharacters.html
Here's a long list of what you can use:
http://brucejohnson.ca/SpecialCharacters.html
Bootstrap glyphicons 是一个可靠的图标库:
https://getbootstrap.com/docs/3.3/components/
请记住在
元素中还包含 Bootstrap 和 jQuery。
JSFiddle 对此进行了解释: https://jsfiddle.net/canada/dfr90pac/
Bootstrap glyphicons is a reliable library for icons:
https://getbootstrap.com/docs/3.3/components/
Remember to also include Bootstrap and jQuery in the
<head>
element.JSFiddle explaining this: https://jsfiddle.net/canada/dfr90pac/
那么,您可以使用图像并将其显示在
标记中。在他们的点击事件中,您可以编写一些 JavaScript 代码。你可以在谷歌中搜索图片。
Well, you could use an image and display it in the
<img>
tags. On their click event, you could write some JavaScript code. You could search the images in Google.