网站文本的随机字体?
我已经见过很多生成随机字体颜色的方法,但是我如何为我网站上的一段文本使用字体列表中的随机字体(或完全随机)?
I've seen lots of methods for generating random font colours, but how would I go about using a random font from a list of fonts (or just totally random) for a section of text on my website?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以像这样从 PHP 列表中获取随机条目:
然后在您想要覆盖该类的任意位置回显
$randomFont
。也许在文档中内联的标记中
You can get a random entry from a list in PHP like this:
and then just echo
$randomFont
wherever you want to override the class. Perhaps in a<style>
tag inline in your document创建字体名称数组。
然后,当您设置文本的颜色时:
这是一个小提琴: http://jsfiddle.net/maniator/ EJAmv/
您可以对字体执行相同的操作:http://jsfiddle.net/maniator/EJAmv/1/
Create an array of font names.
Then when you are setting the color of the text:
Here is a fiddle: http://jsfiddle.net/maniator/EJAmv/
And you can do the same for fonts: http://jsfiddle.net/maniator/EJAmv/1/
试试这个:
Try this:
这适用于我的网页,我认为这很简单:
This works on my Webpage, and I Think it's easy: