我正在使用Instafeed.js插件并尝试设置“喜欢”悬停叠加层以填充整个图像框,但是,我很难将高度设置为100%。
我正在尝试避免将容器的高度设置为像素值,因为整个插件当前都是响应的。
我环顾四周并尝试了display
和position
值的不同组合,但这主要是反复试验。
CSS:
#instafeed {
width: 100%;
margin-bottom: 80px;
}
#instafeed a {
position: relative;
}
#instafeed .ig-photo {
width: 25%;
vertical-align: middle;
}
#instafeed .likes {
width: 100%;
height: auto;
top: 0;
left: 0;
right: 0;
position: absolute;
background: #f18a21;
opacity: 0;
font-family: 'LinotypeUniversW01-Thin_723604', Arial, sans-serif;
font-size: 28px;
color: #ffffff;
line-height: 100%;
text-align: center;
text-shadow: 0 1px rgba(0, 0, 0, 0.5);
-webkit-font-smoothing: antialiased;
-webkit-transition: opacity 100ms ease;
-moz-transition: opacity 100ms ease;
-o-transition: opacity 100ms ease;
-ms-transition: opacity 100ms ease;
transition: opacity 100ms ease;
}
#instafeed a:hover .likes {
opacity: 0.8;
}
演示:http://jsfiddle.net/rc1wj5t9/
任何帮助/建议都将不胜感激!
答案 0 :(得分:3)
这是因为默认情况下锚元素为inline
,这意味着它们不会继承子元素img
元素的高度。
一种可能的解决方案是将锚元素的display
设置为inline-block
,并指定宽度25%
。然后,对于子img
元素,设置max-width
100%
:
#instafeed a {
position: relative;
display: inline-block;
max-width: 25%;
}
#instafeed .ig-photo {
max-width: 100%;
vertical-align: middle;
}
#instafeed .likes {
width: 100%;
height: auto;
top: 0; right: 0;
bottom: 0; left: 0;
}
为了使文字居中,我使用了之前答案中的一个techniques for vertically/horizontally centering text。
#instafeed .likes > span {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
white-space: nowrap;
}
答案 1 :(得分:1)
以下是我修复它的方法。
CSS
<WebView
... some other props ...
injectedJavaScript={'function hideHead(){document.getElementById("head").style.display="none";};hideHead();'}
/>