0

我有一个特定于 IE 的问题。从好的方面来说,它适用于所有其他浏览器。

单击.close_button_page应该执行简单动画功能的图像时会出现问题,div将 向左移动。

在 IE 8 及更低版本中,它只是在控制台中显示无效参数。我在网上发现了类似的问题,但没有解决问题。

注意:目前还有许多其他 IE 错误(z-index等),因此请忽略。

HTML:

<div id="content-left">
    <img class="close_button_page" height="13" width="14" src="assets/images/close_button.png"/>
    <h2>Our process</h2>
    <h3>Even smaller title to this section</h3>
    <p>Dummy text to show that this is the home of Dukelease and that this site is of the utmost quality and will provide hours of fun by flicking through images.</p>
</div>

CSS:

#content-left {
  -webkit-box-shadow:#000000 1px 1px 5px;
  border-top-color:#FFFFFF;
  border-top-style:solid;
  border-top-width:3px;
  box-shadow:#000000 1px 1px 5px;
  float:left;
  padding-bottom:10px;
  padding-left:10px;
  padding-right:10px;
  padding-top:10px;
  position:relative !important;
  width:230px;
  z-index:10;
}
style.css (line 562)
#content-left, .bg_white {
  background-color:rgba(255, 255, 255, 0.949219);
}

JavaScript:

$(".close_button_page").click(function(){   

    $('#content-left').animate({
        marginLeft: '-260px'
    }, 1300, function(){
        $('.open_button_page').fadeIn(1000);
    });             
});
4

1 回答 1

0

Try replacing this:

$(".close_button_page").click(function(){   

    $('#content-left').animate({
        marginLeft: '-260px'
    }, 1300, function(){
        $('.open_button_page').fadeIn(1000);
    });             
});

with this:

$(".close_button_page").click(function(){ 
    $('#content-left').toggle('slide');
});

Tested here http://jsfiddle.net/ollie101/RuVZ3/5/

于 2012-05-11T08:58:23.263 回答