Как изменить preloader в теме «dustin»?

Регистрация
15 Дек 2017
Сообщения
5,067
#2
Изменять стиль анимации в CSS:

CSS:
.preloader {
    align-items: center;
    justify-content: center
}

.preloader {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #ecedf4;
    display: flex;
    flex-direction: column
}

.preloader .preloader-icon {
    border: 5px solid #eee;
    border-radius: 50%;
    border-top: 5px solid #44475a;
    width: 50px;
    height: 50px;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite
}

.preloader svg path {
    fill: #44475a
}
 
Новичо́к, через «о́»
Регистрация
22 Май 2020
Сообщения
27
#3
А есть возможность поставить png за место него?
 
Енот
Новичо́к, через «о́»
Регистрация
7 Авг 2020
Сообщения
286
#6
@Alisa как вставить такой код в css чтоб не навредить остальному ?
И изменить прелоадер на свой.

CSS:
@import url(http://fonts.googleapis.com/css?family=Montserrat);


.cssload-loading {
    text-align:center;
    margin: 49px auto;
    color: rgba(255,255,255,0.34);
    font-size: 2em;
    font-family: "Montserrat", sans-serif;
    animation: cssload-breathe 8.05s ease infinite;
        -o-animation: cssload-breathe 8.05s ease infinite;
        -ms-animation: cssload-breathe 8.05s ease infinite;
        -webkit-animation: cssload-breathe 8.05s ease infinite;
        -moz-animation: cssload-breathe 8.05s ease infinite;
}

@keyframes cssload-breathe {
    0% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
    30% {
        color: transparent;
    }
    50% {
        letter-spacing: 97px;
        font-size: 0;
        text-shadow: 0 0 6px white;
    }
    60% {
        color: transparent;
    }
    100% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
}

@-o-keyframes cssload-breathe {
    0% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
    30% {
        color: transparent;
    }
    50% {
        letter-spacing: 97px;
        font-size: 0;
        text-shadow: 0 0 6px white;
    }
    60% {
        color: transparent;
    }
    100% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
}

@-ms-keyframes cssload-breathe {
    0% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
    30% {
        color: transparent;
    }
    50% {
        letter-spacing: 97px;
        font-size: 0;
        text-shadow: 0 0 6px white;
    }
    60% {
        color: transparent;
    }
    100% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
}

@-webkit-keyframes cssload-breathe {
    0% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
    30% {
        color: transparent;
    }
    50% {
        letter-spacing: 97px;
        font-size: 0;
        text-shadow: 0 0 6px white;
    }
    60% {
        color: transparent;
    }
    100% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
}

@-moz-keyframes cssload-breathe {
    0% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
    30% {
        color: transparent;
    }
    50% {
        letter-spacing: 97px;
        font-size: 0;
        text-shadow: 0 0 6px white;
    }
    60% {
        color: transparent;
    }
    100% {
        letter-spacing: 0;
        text-shadow: 0 0 1px white;
    }
}