2012-04-07 5 views
0

私のアプリケーションではqTip2を使用しています。私は、次のjQueryを通じて実現していますtooptipfication:あなたが丸いを見ることができるようにenter image description here qTip2 IE8丸い角

  • のFirefox:enter image description here
  • IE8

    $(this).qtip({ 
         style: { 
          tip: { 
           corner: true, 
           width: 10, 
           height: 5 
          }, 
          classes: 'ui-tooltip-rounded ui-tooltip-shadow ui-tooltip-tipsy' 
         }, 
         position: { 
          my: 'bottom left', 
          at: 'top right', 
          adjust: { 
           x: -10, 
           y: 0 
          } 
         }, 
         events: { 
          show: function (event, api) { 
           $('.ui-tooltip-content').addClass('ui-tooltip-center'); 
          } 
         }, 
         show: { 
          effect: function (offset) { 
           $(this).show(); 
          } 
         }, 
         hide: { 
          effect: function (offset) { 
           $(this).hide(); 
          } 
         } 
    }); 
    

    は今それがでレンダリングしていますコーナーはIE8で消えました。また、x、yの先端の調整は機能していません。私はqTip2のこの特定の問題の解決策を探しています。これを解決する方法はありますか?

    このような問題がないTooptipライブラリがありますか?

+0

IE8は、丸みを帯びた角をサポートしていないので、私はCSSがどこかに 'ボーダー-radius'を持っていると思われます。コードにCSS3PIEを追加した後でCSSを編集してみてください:http://css3pie.com/ – Blender

答えて