第n个子选择器不适用于手机上属于JavaScript的Tingle.js的类

问题描述 投票:0回答:1
  • tingle-modal__close在HTML中不存在,因为它属于JavaScript。当您单击超链接锚点以打开模式时,JavaScript将添加此类。
  • tingle-modal__close类确实存在于Tinge CSS文件中。但是nth-child选择器不适用于该类,因为该类属于JavaScript。这是一个小例子:
  .tingle-modal__close:nth-child(1) 
  {
    background-color: var(--orange-600) !important;
  }

  .tingle-modal__close:nth-child(2) 
  {
    background-color: var(--purple-600) !important;
  }

这意味着第一个窗口关闭按钮为橙色,第二个为紫色。

具有单击/启用/打开模式,已编译的HTML,JavaScript添加了tingle-modal__close

<div class="tingle-modal tingle-modal--visible" style="">
  <button type="button" class="tingle-modal__close">
    <span class="tingle-modal__closeIcon">
      <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
                <path d="M.3 9.7c.2.2.4.3.7.3.3 0 .5-.1.7-.3L5 6.4l3.3 3.3c.2.2.5.3.7.3.2 0 .5-.1.7-.3.4-.4.4-1 0-1.4L6.4 5l3.3-3.3c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0L5 3.6 1.7.3C1.3-.1.7-.1.3.3c-.4.4-.4 1 0 1.4L3.6 5 .3 8.3c-.4.4-.4 1 0 1.4z" fill="#000" fill-rule="nonzero"></path>
      </svg>
    </span>
    <span class="tingle-modal__closeLabel">Close</span>
  </button>
    <div class="tingle-modal-box">
        <div class="tingle-modal-box__content">
            <h1>Section 1</h1>
            <blockquote>“I'm selfish, impatient and a little insecure. I make mistakes, I am out of control and at times hard to handle. But if you can't handle me at my worst, then you sure as hell don't deserve me at my best.”</blockquote>
            <cite>Marilyn Monroe</cite>
        </div>
    </div>
</div>

您可以使用JSFiddle进行测试,请将预览窗口的大小调整为小于530px:https://jsfiddle.net/gusbemacbe/k8v74gwb/1/

javascript html css css-selectors
1个回答
0
投票
顾名思义,

:nth-child是其父级的第N个子级。打开模态时,关闭按钮始终是模态的第一个子代。如果模态始终处于正确的顺序(.tingle-modal:nth-child(1) .tingle-modal__close

,则使用does not seem to be the case, they're reversed之类的方法更合适。

但是如果要将类添加到模态,Tingle.js库允许您提供cssClass选项。您可以使用此功能执行您想要的操作:

https://jsfiddle.net/d60f4jz8/2/

JS

var modalTinyNoFooter = new tingle.modal({
        cssClass: ['modal-1'],
        // ...
    });
// ...
var modalTinyNoFooter2 = new tingle.modal({
        cssClass: ['modal-2'],
        // ...
    });
// ...
var modalTinyNoFooter3 = new tingle.modal({
        cssClass: ['modal-3'],
        // ...
    });
// ...

CSS

.tingle-modal.modal-1 .tingle-modal__close {
  background-color: var(--orange-600) !important;
}

.tingle-modal.modal-2 .tingle-modal__close {
  background-color: var(--purple-600) !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.