0

如果可能,我想在 div 标签上将字体更改为 Segoe UI 并将字体大小更改为全屏宽度。这是代码:

<!DOCTYPE html>
<html>
<head>
<script>
function startTime()
{
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('txt').innerHTML=h+":"+m+":"+s;
t=setTimeout(function(){startTime()},500);
}

function checkTime(i)
{
if (i<10)
{
i="0" + i;
}
return i;
}
</script>
</head>

<body onload="startTime()">
<div id="txt"></div> 
</body>
</html>

我希望将大小更改为屏幕宽度,因此如果有人从手机上查看它,通常需要大字体大小的人可以阅读它。

4

2 回答 2

0
@media screen and (min-width: 481px) {
.className{
font-size:15px;
}

}
@media screen and (max-width: 480px) {
.className{
font-size:20px;
}

}
@media screen and (max-width: 560px) {
.className{
font-size:25px;
}

}
@media screen and (max-width: 720px) {
.className{
font-size:30px;
}

}
@media screen and (max-width: 768px) {
.className{
font-size:13px;
}

}
@media screen and (max-width: 980px) {
.className{
font-size:12px;
}

}

请使用媒体查询

于 2013-11-01T06:32:25.093 回答
0

CSS3 媒体查询正是为了满足您的要求。以下是它们如何工作的示例:

HTML

<div>Lorem ipsum dolor sit amet</div>

CSS

DIV {
    font-size:14pt;
}

@media (max-width:450px) {
    /* Increases font size on smaller screen */
    DIV {
        font-size:24pt;
    }
}

演示:

http://jsfiddle.net/uGfAY/ - 尝试调整浏览器窗口的大小以模拟不同的屏幕尺寸。

于 2013-10-31T19:24:17.557 回答