css3 PIE.js无法在IE8中运行

时间:2013-04-23 19:45:04

标签: javascript html css3 css3pie

我在IE8中遇到了pie.js的问题。 这是我的css代码

.example{
  top:0;
  font-family:Verdana, Arial, Helvetica, sans-serif;
  padding:0;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  border-radius:5px;
  font-weight:bold; 
  cursor:pointer;
  text-decoration:none;
  position:relative;
  z-index:1;
  background-position: 0 50%;
  background-repeat:repeat-x;
  text-align:center; 
  -pie-poll:true;  
  }

我用jQuery调用它

jQuery(document).ready(     
                    function() {
                        if (window.PIE) {
                         $('.example').each(function() {
                         PIE.attach(this);
                        });
                     }                  
                });

它在IE7中工作正常,但是当我切换到IE8时,在我将鼠标悬停在样式元素上之前,饼图样式不会呈现。只有在完全加载页面后第一次才会发生这种情况!!后来它的工作正常......

我很确定我使用绝对路径来加载pie.js并且我已经处理了Z-index以及position:relative ...

只是不知道出了什么问题......有没有人有同样的问题?你是如何解决的?

0 个答案:

没有答案