.btn-pay {
animation: star 0.5s ease-in-out infinite alternate;
}
@keyframes star{
from {
transform: scale(1);
}
to {
transform: scale(1.1);
}
} img.img-full.img-circle {
transition: 0.5s;
}
span.thumb-lg.w-auto-folded.avatar.m-t-sm {
animation: light 4s ease-in-out infinite;
}
.thumb-lg {
width: 68px
}
.img-full:hover {
transform: scale(1.1) rotate(360deg);
}
@keyframes light {
0% {
box-shadow: 0 0 4px red
}
25% {
box-shadow: 0 0 16px #0f0
}
50% {
box-shadow: 0 0 4px #00f
}
75% {
box-shadow: 0 0 16px #0f0
}
100% {
box-shadow: 0 0 4px green
}
} .blog-post .panel:not(article){transition:all .3s}
.blog-post .panel:not(article):hover{transform:translateY(-10px)} .index-post-title a:hover {color:#ff676c;}
此处评论已关闭