图像背景突出显示或Z-index?
我已经走了这么远(但你不会知道)。努力浏览我的艺术网站。
本页 http://rollinleonard.com/elements/ 此页面有一个小的覆盖 div,悬停在这些图像上。第一个 img 位于 div 的背景中。我希望该 img 也具有蓝色荧光笔效果。
我如何获得它,使其成为正常的 img,然后在该 img 之上的另一层上有我的导航(带有白色背景的文本)?
谢谢!
I've come so far (but you wouldn't know it). Struggling through my art website.
This page
http://rollinleonard.com/elements/
This page has a little overlay div that hovers over these img. The first img is in the background of a div. I want that img to also have this blue highlighter effect.
How do I get it so that its a normal img and then on another layer over that img there is my nav (text with white background)?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为最简单的方法是使您的第一个
div
像其他图像a > 一样。 img
并将您的nav
置于absolute
位置。HTML:
CSS:
I thick the easyest way to do this is to mak your first
div
like other imagea > img
and put yournav
inabsolute
position.HTML :
CSS :
@rollin,不需要使用js检查这个
http://jsfiddle.net/sandeep/f2662/
@ rollin , there no need to use js check this
http://jsfiddle.net/sandeep/f2662/
您的代码如下所示:(
仅出于演示目的使用样式的内联定义)
最好的问候,carsten
your code looks like this:
(use of inline definitions for styles for demonstration purposes only)
best regards, carsten
将其添加到 $(window).load() 事件内的 js 文件中
add this in your js file inside the $(window).load() event