全屏Div过渡

时间:2019-02-24 09:27:54

标签: jquery css

本质上,我正在尝试重新创建单击该图层时在此处看到的效果,并且当元素在平滑过渡中调整时,它将变为全屏显示:

https://s3.amazonaws.com/www-inside-design/uploads/2019/01/image4.gif

我在这里尝试使用CSS。但是,“过渡:全部”似乎并不适用于所有元素。

.goalcard 
{
    // background-color:rgba(0, 0, 0, .06) ;
    background: linear-gradient($primary-color, $secondary-color);
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 10px;
    margin-top: 20px;
    font-size: 1.4rem;
    vertical-align: top;
    color: #fff;
    transition: all 600ms ease-in-out;


}

.gcfull {
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;

}

Check here for complete example

0 个答案:

没有答案