第一次海報 - 我到處尋找解決方案,我希望你們可以幫助!使用CSS模糊過濾器時遇到問題。我創建了一個磨砂玻璃效果(類似於ios7設置菜單效果),以在我的網站上提供疊加效果。我注意到,每當我與其上的一個元素進行交互時,模糊div上的透明div就會中斷(在圖標#1懸停在可點擊的圖標上)。它還會導致水平線破壞導航覆蓋時的效果,並在滾動中顯示div(photo2)。麻煩似乎與「.blur」div本身,因爲我仍然看到滾動時的相同行爲,當我刪除「.overview_text」文本透明覆蓋。這是Webkit過濾器本身的錯誤,還是我做錯了什麼?任何想法可能會導致這種情況,以及如何防止它發生?提前致謝。CSS模糊過濾器打破滾動和懸停
此搜索:http://cl.ly/image/2v3p3P0r3d1y 鏡像2:http://cl.ly/image/2H091L2l1K2c
相關html.erb
<div class="plan_overview span10 offset1">
<%= image_tag plan.cover_photo, class: "panzoom-elements" %>
<div class="blur span3">
<%= image_tag plan.cover_photo %>
</div>
<div class= "overview_text span3">
...took out content code here...
</div>
css.scss文件
.plan_overview {
height: 400px;
background: $gray;
z-index: 2;
margin-top:10px;
margin-bottom: 20px;
overflow: hidden;
border: 1px solid #979797;
img{
position:absolute;
overflow: hidden;
}
}
.blur{
position: absolute;
@include box_sizing;
z-index: 2;
height: 400px;
width: 300px;
margin-left:0px;
padding:0;
background-color: white;
img{
z-index: 2;
position: absolute;
height:420px;
width: 350px;
left: 0;
margin: -1px;
overflow: hidden;
filter: blur(30px);
-webkit-filter: blur(30px);
-moz-filter: blur(30px);
-o-filter: blur(30px);
-ms-filter: blur(30px);
}
}
.overview_text {
background: rgb(250, 250, 250); /* Fall-back for browsers that don't support rgba */
background: rgba(240, 240, 240, .5);
position: absolute;
margin-left: 0;
border-right: 1px solid #979797;
z-index: 10;
padding: 5px;
color: white;
font-family: AvenirNextCondensed-Regular;
word-break: normal;
word-wrap: break-word; /* IE */
height: 400px;
width: 300px;
font-size: 18px;
line-height: 25px;
float: left;
.title {
z-index: 301;
font-family: AvenirNextCondensed-Bold;
font-size: 20px;
line-height: 27px;
}
}
只是fyi - 這不再可靠GPU加速了iOS6的內容 –
+1 scottier事實上,這在某些情況下可以解決掉眼淚。無論這是否是一個解決方案,我沒有做足夠的盡職調查。然而,事實上這確實解決了我已經測試的這一點。 – origin1tech