gpt4 book ai didi

javascript - 使用屏幕指南突出显示 DIV 内容

转载 作者:太空宇宙 更新时间:2023-11-03 20:38:27 26 4
gpt4 key购买 nike

我想在使用屏幕指南显示说明时突出显示箭头所指的元素

这是 fiddle 的链接

Fiddle

fiddle 的一些代码是:

$("#overlay").on("click", function(){
this.style.display = "none";
$("#clk").show();
});

$("#clk").on("click", function(){
$("#overlay").show();
$("#clk").hide();
});

最佳答案

您需要稍微调整一下样式才能实现这一点。

为叠加 div 添加边距,以便 main 可见。同样,调整箭头和相应文本的位置,使其到合适的位置。

请注意,如果像 carmin 演示中那样,盒子在视觉上 内,则此解决方案将不起作用。

updated jsFiddle

更新的 CSS:

*{
margin: 0px;
padding: 0px;
}

#overlay{
font-family: "Comic Sans MS", cursive, sans-serif;
position: fixed;
width: 100%;
height: 100%;
margin-top: 120px;
z-index: 999999;
background-color: #000;
opacity:0.5;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}

#overlay p, #overlay img{
position: relative;
}

#overlay p{
color: blue;
}

#instruction1{
top: 50px;
left: 400px;
}

#arrow1{
width: 100px;
position: relative;
top: -30px;
left: 150px;
}

#instruction2{
top: -10px;
left: 225px;
}

#dismiss{
font-size: 12px;
}
.shome{
display: block;
}
main{
z-index: 0;
}

main div{
padding: 50px;
background: rgb(0,120,170);color:#fff;
z-index: 9999999;
opacity: 0.8;
}

关于javascript - 使用屏幕指南突出显示 DIV 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29695523/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com