900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > 动画效果css CSS3 animate动画效果测试 张鑫旭-鑫空间-鑫生活

动画效果css CSS3 animate动画效果测试 张鑫旭-鑫空间-鑫生活

时间:2021-09-09 13:44:24

相关推荐

动画效果css CSS3 animate动画效果测试  张鑫旭-鑫空间-鑫生活

CSS代码:

@-webkit-keyframes glow {

0% {

-webkit-box-shadow: 0 0 12px rgba(72, 106, 170, 0.5);

border-color: rgba(160, 179, 214, 0.5);

}

100% {

-webkit-box-shadow: 0 0 12px rgba(72, 106, 170, 1.0), 0 0 18px rgba(0, 140, 255, 1.0);

border-color: rgba(160, 179, 214, 1.0);

}

}

.anim_image {

padding:3px;

border:1px solid #beceeb;

background-color:white;

-moz-box-shadow: 0 0 8px rgba(72, 106, 170, 0.5);

-webkit-box-shadow: 0 0 8px rgba(72, 106, 170, 0.5);

box-shadow: 0 0 8px rgba(72, 106, 170, 0.5);

}

.anim_image:hover {

background-color:#f0f3f9;

-webkit-animation-name: glow;

-webkit-animation-duration: 1s;

-webkit-animation-iteration-count: infinite;

-webkit-animation-direction: alternate;

-webkit-animation-timing-function: ease-in-out;

}

HTML代码:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。