引导模式背景风尚或过渡

时间:2019-12-07 14:30:28

标签: javascript html css twitter-bootstrap bootstrap-4

引导程序:4.3.1

嗨,

我正在使用this template,并且我在侧边栏菜单中进行了一些更改,并且还希望在菜单打开时更改引导程序模态的背景,请查看:

enter image description here

我将背景设置为模态modal-backdrop类:

.modal-backdrop {
    filter: blur(8px);
    -webkit-filter: blur(8px);
    background: url('../img/home/3.jpg') ;
    background-size: contain ;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1 !important;
    width: 50%;
    left: auto;
    right: 0;
   transition: opacity 0.5s ease-in;
   -moz-transition: opacity 0.5s ease-in;
   -webkit-transition: opacity 0.5s ease-in;
}

如您所见,右侧背景显示在菜单之前,菜单显示不显示后消失

我在modal-backdrop上设置了一些转换,但是它不起作用,有时甚至在主菜单上起作用。

我不擅长CSS,也不知道发生了什么事...

谢谢

0 个答案:

没有答案