Подробное описание и демонстрация работы эффекта наведения для ссылки под номером №10 для библиотеки Bootstrap. Html и CSS код для оформления ссылок на сайте как на изображении.

HTML разметка и CSS стили для оформления ссылок на сайте
<a href="#" class="link">hover me</a>
.link{
    display: inline-block;
    padding: 5px 20px;
    font-size: 20px;
    color: #393c71;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
}
.link:hover{ color: #fff; }
.link:before,
.link:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #393c71;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transform: scale(0.1);
    transform-origin: left top 0
}
.link:after{
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    transform-origin: right bottom 0;
}
.link:hover:before,
.link:hover:after{
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s linear 0s;
}
@media only screen and (max-width: 767px){
    .link{ margin-bottom: 20px; }
}


Теги:
0

Оставить своё мнение

Ваш e-mail не будет опубликован. Обязательные поля помечены *