jquery - 有光泽的 CSS3 图像叠加层无法正常工作

标签 jquery html css

所以我在教程中找到了这段代码,用于在 DIV 上应用光泽覆盖,对吧?

.glossy .image-wrap {
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.5);
    -moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,.5);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.5);

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.glossy .image-wrap:after {
    position: absolute;
    content: ' ';
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;

    background: -moz-linear-gradient(top, rgba(255,255,255,0.7) 0%, rgba(255,255,255,.1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.7)), color-stop(100%,rgba(255,255,255,.1)));
    background: linear-gradient(top, rgba(255,255,255,0.7) 0%,rgba(255,255,255,.1) 100%);
}

好的,现在我只想在帖子图像上应用这个光泽叠加层,所以代码现在看起来像这样:

.post img .image-wrap {
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.5);
    -moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,.5);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.5);

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.post img .image-wrap:after {
    position: absolute;
    content: ' ';
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;

    background: -moz-linear-gradient(top, rgba(255,255,255,0.7) 0%, rgba(255,255,255,.1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.7)), color-stop(100%,rgba(255,255,255,.1)));
    background: linear-gradient(top, rgba(255,255,255,0.7) 0%,rgba(255,255,255,.1) 100%);
}

但是没用!! CSS 样式不适用于帖子图像,请问我做错了什么? This is the website我正在应用样式。感谢您的帮助!

最佳答案

图像不能包含您似乎在 CSS 中定位的子项。

您需要将每个图像包装在一个 inline-block div 中(可能使用 glossy 类),然后使用原始技术。

我建议您重新检查代码源,看看这是否不是正在使用的技术。

关于jquery - 有光泽的 CSS3 图像叠加层无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26575528/

相关文章:

jquery - Django + Jquery,扩展AJAX div

javascript - ie javascript 删除元素

javascript - 没有 FlexNav

CSS - 具有可变高度标题的 100% 高度布局

html - 如何让视频适合div?

用于包裹特定控件的标签的 CSS 选择器?

javascript - 使用 jquery.validate 根据使用的表单验证提交的表单

jquery - 我的下拉菜单没有使用 jQuery 出现。有小费吗?

html - 如何为单个边框设置多种颜色

html - Jekyll 自定义默认主题