jQuery自动改变文字大小代码jQuery自动改变文字大小代码是一款轻量级自适应文字大小插件jQuery.fontFlex。jquery轻量级文字大小jquery插件
<style>
body {
font-family: Helvetica, Arial, sans-serif;
font-weight: normal;
line-height: normal;
margin: 5%;
padding: 0;
background: black;
-webkit-font-smoothing: antialiased;
}
h1 {
font-weight: 300;
line-height: 150%;
color: gray;
}
a {
position: fixed;
top: 0;
right: 0;
padding: 10px 20px;
font-size: 13px;
line-height: 13px;
text-decoration: none;
color: black;
background: white;
-webkit-font-smoothing: subpixel-antialiased;
}
a:hover {
background: gray;
}
b {
color: white;
}
</style>
<script>
$(function() {
$('h1').fontFlex(20, 60, 40);
});
</script>