将除 div 之外的所有内容设置为透明
我正在尝试找到一种方法,让除了一个 div 之外的所有内容都具有一定的透明度。并且只是允许单击该特定的 div。这可能是一个简单的问题,但我真的不知道在哪里可以找到答案。我认为这可能类似于模态对话框效果...但是对于我的特定 div...
I'm trying to find a way to put some transparency in everything except one div. And just to allow to click on that specific div. This probably is a easy question but I'm really out of ideas where to find the answer. I think this could be something like the modal dialog effect... but with my specific div...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
因为它被标记为 jQuery
Because it was tagged jQuery
尝试 jquery 覆盖。它应该满足您的需求。
Try jquery overlay. It should meet your needs.
这是内置于 jQuery UI 中的,因此您不需要使用任何额外的插件。只需将 UI 文件与 jQuery 一起包含即可。并将单词“jQuery”替换为“$”。确保为“obj”参数传递的参数值是 div 标签的 id。请注意,我们正在引用“dData”页面,因此如果您必须重复使用此对话框或已共享该对话框,则可以重复使用它。但如果您希望以其他方式定义数据,则可以更改这一点。
This is built into jQuery UI so you shouldn't need to use any extra plugins. Just include the UI file along with jQuery. And replace the word "jQuery" with a "$". Make sure the argument value you pass for the "obj" parameter is the id of your div tag. Notice we're referencing a page for "dData" so if you have to re-use this dialog, or is shared, you can re-use it. But that can be changed if you prefer to have the data defined in another way.
你不需要jquery。你可以单独使用CSS。
我在这里的回答应该可以解决您的问题:
CSS 抑制屏幕,如 Javascript 警报
创建一个 div,其位置:固定,高度和宽度均为 100%。然后将背景设置为 rbga(255,255,255,.8) 或重复的 1px 方形白色不透明 png(具有您选择的不透明度)。使用具有不透明白色背景的 div 覆盖内容与降低底层内容的实际不透明度具有相同的效果。
You don't need jquery. You can do with CSS alone.
My answer here should solve your problem:
CSS suppress screen like Javascript alert
Create a div with position: fixed that is 100% height and width. Then set the background either to rbga(255,255,255,.8) or a repeating 1px square white opaque png (either with the opacity of your choice). Having a div overlay content with an opaque white background gives the same effect as lowering the actual opacity on the underlying content.