实现效果
实现
HTML 元素:
html
<figure>
<section class="img-bg"></section>
<img height="320" width="320" src="https://vitejs.dev/logo-with-shadow.png" alt="Vite Logo" />
</figure>
CSS
样式代码:
css
.img-bg {
position: absolute;
background-image: linear-gradient(-45deg, #bd34fe 50%, #47caff 50%);
border-radius: 50%;
filter: blur(72px);
z-index: -1;
animation: pulse 4s cubic-bezier(0, 0, 0, 0.5) infinite;
}
@keyframes pulse {
50% {
transform: scale(1.5);
}
}
实现 Logo 阴影特效的核心样式就在这几行 CSS
中。以下分部解释每行样式的作用:
1. 增加背景
css
background-image: linear-gradient(-45deg, #bd34fe 50%, #47caff 50%);
2. 将背景设置为圆形
css
border-radius: 50%;
3. 加入关键的 filter 属性 将模糊的图形效果应用于元素
css
filter: blur(72px);
4. 将背景至于图形底部
css
z-index: -1;
5. 加入动画效果
css
animation: pulse 4s cubic-bezier(0, 0, 0, 0.5) infinite;