0

IE7 + 8을 제외한 모든 브라우저에서 작동하는 간단한 CSS 시차 효과 example을 사용했습니다. 해결 방법이 있습니까 아니면 지원되지 않는 것입니까?Parallax CSS 효과가 IE7에서 지원되지 않습니까?

<h1>My Page</h1> 
<h2>Flowers, Flowers, Flowers </h2> 

<div id="slide4" class="slide" data-stellar-background-ratio="0" data-slide="4"> </div> 
    <div id="slide2" class="slide" data-stellar-background-ratio="0.5" data-slide="2"> </div> 

<h2>Some text goes here</h2> 
<h2>Some text goes here</h2> 
<h2>Some text goes here</h2> 
<h2>Some text goes here</h2> 
<h2>Some text goes here</h2> 

#slide4 {background-image: url("http://ibmsmartercommerce.sourceforge.net/wp-content/uploads/2012/09/Roses_Bunch_Of_Flowers.jpeg"); 
background-size: contain; 
float: left; 
margin-top:20px; 
height: 450px;} 

.slide {background-attachment: fixed; 
height: 100%; 
position: inherit; 
width: 100%;} 
+1

에 대한 배경 크기 지원을 위해'inherit' 배경 - size'이 suppo 아닌'IE7에서 지원되지 않으며, IE7과 8에서 뛰었습니다. – BoltClock

답변