JavaScript 使字体变形

发布于 2024-11-03 03:28:44 字数 928 浏览 0 评论 0原文

我注意到我的网站上的字体显示不清晰。 这是由于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文