我注意到我的网站上的字体显示不清晰。 这是由于JavaScript,但我找不到问题。有没有人 知道出了什么问题?
字体的边框不直。看起来像没有设置cleartype。问题出在mu FF4浏览器中。 当javascript关闭(少)时,字体权重肯定是不同的。
编辑:我看到Jquery后台功能有什么问题。 它是否否决了所有css正文陈述?有没有办法只将背景添加到身体?
$(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');
}
});