gpt4 book ai didi

jquery - 无法设置 Fancybox 模态样式

转载 作者:行者123 更新时间:2023-12-01 04:33:52 27 4
gpt4 key购买 nike

我在设置模式时遇到问题,我设置为用精美的盒子打开。单击后,模态/div 的内容会显示出来,没有任何问题,但似乎我应用于该模态 div 的所有样式都拒绝显示。

.hidden{
display:none;
}

.red{
background: red;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>modal</title>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css">
</head>


<body>
<div>
<a data-fancybox data-src="#open" href="javascript:;">Open modal box</a>
</div>

<div class="hidden">
<div class="red" id="open">
<h2>Hello</h2>
<p>You are awesome.</p>
</div>
</div>

</body>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
</html>

这是我的 setup在 Codepen 上

最佳答案

如果您的常用选择器无法应用样式,请尝试更具体地选择元素。

ID 具有更高的具体性,因为它们是唯一的。

类名也很具体,但它们也用在其他样式表中

标签名称不是最具体的,因为它们可以在页面中的任何位置找到

* 选择器在 css 中具有最低的特异性

div.red{background: red;} // Selects divs that have 'red' classname

.hidden{
display:none;
}

div.red{
background: red;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>modal</title>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css">
</head>


<body>
<div>
<a data-fancybox data-src="#open" href="javascript:;">Open modal box</a>
</div>

<div class="hidden">
<div class="red" id="open">
<h2>Hello</h2>
<p>You are awesome.</p>
</div>
</div>

</body>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
</html>

关于jquery - 无法设置 Fancybox 模态样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60246217/

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