0

我在父 div 中有一个飞机的 div overflow: hidden,所以看起来飞机 div 从页面上的一个元素下方飞行并用它拖动横幅。

在这里查看我的图表:

图表

我已经拥有的css代码是:

#plane{
width: 195px;
background-image: url(images/plane.png);
background-repeat: no-repeat;
height: 444px;
float: left;
position: relative;
top: 0px;
left: 0px;
}
#plane-holder {
height: 569px;
width: 960px;
overflow: hidden;
z-index: 2200;
display: inherit;
}

和 HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Netball Plane</title>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.4.1/build/cssreset/cssreset-min.css">
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
</head>
<body>
<div id="header"><div id="topbar"><img src="images/contact-us-bar.gif" width="960" height="45" /></div>
</div>
<div id="content"><div id="mainbody"><div id="menubar"><div id="logo"><img     src="images/logo.gif" width="284" height="103" /></div>
<div class="menu">
Menu to go here
</div>
</div>
</div><div id="hero"><div id="information-that"><h1>Hello welcome to the site</h1>
<p></p><p>Some more text here.</p>
<p><img src="images/netball.png" alt="Rollover the netball for more information"     width="187" height="46" border="0" /></p>
</div>
</div><div id="hero-shadow"></div><script type="text/javascript">
       $(function(){
    var iCounter = 1;
    var iMaxCounter = 4;

        $( '#plane' ).animate({ 
            top: "-=450px",
            left: "+=857px"
        }, 30000, function(){
        }       
        ); 
    $('.slideshow').cycle({
      fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
      after:onAfter
    });

});
        </script>
<div id="plane-holder"><div id="plane"></div>
</div><div id="base-content"><div id="footer"></div>
</body>
</html>

但这显示为一个块,将这些 div 下方的其他元素推到页面下方。

您是否知道解决此问题的方法,以便飞机及其包含的 div 漂浮在我的网站上方?我试过设置 z-index,但这似乎不起作用。

4

1 回答 1

3

可能您应该在and (带有定义的 z-index)上使用位置relative+absolute设置position: relativecontainerabsolute#plane

放置#planewithtop/left/right/bottom属性

  • 一开始你有bottom : -<somepixels>, left : 0
  • 最后你有top : 0, right : 0

这样做其他元素不会受到平面存在的影响,保持在您放置它们的位置

pointer-events: none如果您想允许click/hover平面后面的事件也可以使用:请参阅https://developer.mozilla.org/en/CSS/pointer-eventsIE<=8 (不幸的是,尽管已经发布了一些 js 变通方法,例如 Lea Verou,但不支持它)

于 2012-04-23T14:01:09.827 回答