- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我现在正在处理一些事情,但这行不通!
基本上我想做的是在我的图像上放一个黑色不透明的“屏幕”,这样它就不那么亮了,你可以阅读图像顶部的文字。
这里的例子:
这是我目前拥有的。
<div class="overlay">
<span class="front-coffee block"></span>
<p class="center">Coffee Shop</p>
</div>
div.overlay{background: black; z-index: 5; width:100%; height:100%;}
.block { display: block; }
div.popularCategory p{font-size: 24pt; color: white; margin-top:-50px}
span.front-coffee{background:url('../img/categories/coffee.jpg') no-repeat center; zoom:0.65; width:100%; height:100%; z-index: 4}
最佳答案
如果我没听错,那么您可以尝试稍微模糊一下照片,使文本不会显示给用户,但是这种方法和您的方法也可能会通过 Firebug 或任何其他类似的东西进行更改,并使用户可见的文本,因此这有点不安全。我认为解决此问题的最佳方法是手动编辑照片并添加叠加层,这样就没人能看到原始图像了。
下面是模糊照片的方法(Cross Browser Image Blur with CSS):
img {
width:367;
height:459px;
-webkit-filter: blur(3px); //change the value according to what suits the best
-moz-filter: blur(3px); //change the value according to what suits the best
-o-filter: blur(3px); //change the value according to what suits the best
-ms-filter: blur(3px); //change the value according to what suits the best
filter: blur(3px); //change the value according to what suits the best
}
关于html - CSS 使图像上的文本更具可读性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19335894/
我的按钮有问题。该按钮是登录按钮。当我在输入凭据后单击回车时,将触发查看凭据是否正确的方法。这没有任何问题。 但还应该发生的是,在检查这些凭据是否正确之后,登录和注册按钮应该会被删除,同时会出现一个新
因此,我尝试以 Angular 显示多个 View ,以帮助解决我正在构建的网站中遇到的页脚问题。我想确保我一直在阅读和尝试模仿的内容是有意义的。这就是我到目前为止所拥有的。 index.html
我正在尝试创建可调整大小的 div 容器,而且它们是可拖动的。 我使用了 Angular Material 拖放和 angular resizable element 这是解决方法 https://s
我正在尝试创建可调整大小的 div 容器,而且它们是可拖动的。 我使用了 Angular Material 拖放和 angular resizable element 这是解决方法 https://s
我是一名优秀的程序员,十分优秀!