系统之外的字体引用及过渡效果

时间:2021-05-08


复制代码代码如下:
<span style="font-family: Arial, Helvetica, sans-serif;"><span style="font-size:14px;">1、外部字体引用:用font-face来引入字体</span></span>
有的时候,会用到一些系统里没有的字体,我们可能需要从外部引用我们下载的字体,方法是:

复制代码代码如下:
<!DOCTYPE html>
<html>
<head>
<title>字体引用</title>
<meta charset="utf-8">
<style type="text/css">
<span style="white-space:pre"> </span>
@font-face{
font-family: heeh;



src:url(方正胖娃简体.ttf);
}
.tb{
font-size: 80px;
color: #f40;
font-weight: 300;
<span style="white-space:pre"> </span><span style="white-space:pre"> </span>
font-family: heeh;
}
</style>
</head>
<body>
<h1 class="tb">淘宝</h1>
</body>
</html>

2、过渡效果:属性为transition
在鼠标移动到某一块的时候,在达到效果之前的一个过渡效果。如

复制代码代码如下:
<!DOCTYPE html>
<html>
<head>
<title>transiton(过渡)</title>
<meta charset="utf-8">
<style type="text/css">
.div_tran{
width: 130px;
height: 100px;

background: rgba(165,237,15,0.5);


opacity: .3;
color: #000;
<span style="white-space:pre"> </span>

-webkit-transition:all 3s;
}
.div_tran:hover{
width: 200px;
height: 200px;
background: rgb(28,227,209);
opacity: 1;
color: red;
}

</style>
</head>
<body>
<div class="div_tran">
transiton(过渡)
</div>
<!-- <span>transiton(过渡)</span> -->
</body>
</html>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章