JavaScript 使字体变形
我注意到我的网站上的字体显示不清晰。 这是由于 javascript 造成的,但我找不到问题所在。有没有人 知道出了什么问题吗?
字体的边框不直。看起来好像没有设置cleartype。问题出在 mu FF4 浏览器中。 当 JavaScript 关闭时,字体粗细肯定会有所不同(更小)。
编辑:我看到 Jquery 后台功能有什么问题。 它是否推翻了所有 css body 语句?有没有办法只将背景添加到正文?
$(document).ready(function() {
$.fn.smartBackgroundImage = function(url){
var t = this;
$('<img />')
.attr('src', url)
.load(function(){
t.each(function(){
$(this).css('background', '#16171e url('+url+') right bottom no-repeat fixed');
});
});
return this;
}
var viewportHeight = window.innerHeight ? window.innerHeight : $(window).height();
var viewportWidth = window.innerWidth ? window.innerWidth : $(window).width();
jQuery.post('/v3/ajax/portview.php', {height: viewportHeight, width: viewportWidth});
if (viewportWidth>950) {
$('body').smartBackgroundImage('http://sionvalais.com/gfx/berge.jpg');
}
});
I've noticed the font is not displayed clear on my website.
It is due to the javascript but I can not find the problem. Does anyone
know what is wrong?
The border of the font is not straight. Looks something like cleartype not being set. The problem is in mu FF4 browsers.
Font-weight is definitely different when the javascript is turned off (less).
Edit: I see what is the problem the Jquery background function.
Does it overrule all of the css body statements? Is there a way to just add the background only to the body?
$(document).ready(function() {
$.fn.smartBackgroundImage = function(url){
var t = this;
$('<img />')
.attr('src', url)
.load(function(){
t.each(function(){
$(this).css('background', '#16171e url('+url+') right bottom no-repeat fixed');
});
});
return this;
}
var viewportHeight = window.innerHeight ? window.innerHeight : $(window).height();
var viewportWidth = window.innerWidth ? window.innerWidth : $(window).width();
jQuery.post('/v3/ajax/portview.php', {height: viewportHeight, width: viewportWidth});
if (viewportWidth>950) {
$('body').smartBackgroundImage('http://sionvalais.com/gfx/berge.jpg');
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论