我将如何在 php 中使用不同的字体
我正在做这样的事情:
<?php
if(isset($variable))
{
echo 'A Boring Font';
} else {
};
?>
我如何使 echo 语句使用不同的字体?谢谢你的帮助!
<?php
$text = "It's really not that hard.";
if(isset($fontname)) {
echo "<span style=\"font-family: $fontname;\">";
echo $text;
echo "</span>";
}
else {
echo "In a boring font, I say: " . $text;
}
?>
使用 jquery css 和 html 的示例,但正如评论中提到的 php 没有字体
html
<a href="#" class="font1">Boring Font</a>
<a href="#" class="font2">Awesome font</a>
<div>You chose <span class="fonttype">No Font</span></div>
css
.font1 { 字体系列:'Arial'; } .font2 { 字体系列:'Trebuchet MS'; }
jQuery
$('a').click(function(e){
if($(e.currentTarget).hasClass('font1') {
$('.fonttype').text('boring font');
} else {
$('.fonttype').text('not boring font');
}
//or
alert($(e.currentTarget).css('font-family');
});