<template>
    <div class="border"></div>
</template>
<style scoped>
.border{
    border: 3px solid rgb(143, 204, 248);
    box-shadow: 3px 3px 40px rgb(143, 204, 248) inset;
    width: 100%;
    position: relative;
    animation: border 2s ease-in-out infinite;
}
@keyframes border{
    0% {
        transform: scale(1);
        box-shadow: 0,0,0,0 rgba(255,255,255,0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0,0,0,0 rgba(255,255,255,0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0,0,0,0 rgba(255,255,255,0.7);
    }
}
</style>

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐