|
|

楼主 |
发表于 2022-4-1 14:35
|
显示全部楼层
好吧,多多的坑,关于z-index!
定稿:
<style>
#mnBox {
margin: auto;
position: relative;
display: flex;
justify-content: center;
width: 760px;
height: 760px;
background: url('https://www.huachaowang.com/data/attachment/forum/202204/01/140441rb9c4548b5899m94.jpg') no-repeat center/contain;
border-radius: 50%;
font: 900 3em / 1em Sans-serif;
color: deeppink;
text-shadow: 2px 2px rgba(0, 0, 0, .9);
}
#mnBox::before {
content: '';
position: absolute;
width: 760px;
height: 760px;
border-radius: 50%;
background: linear-gradient(100deg, rgba(9, 19, 199, .5) 0%, rgba(99, 19, 219, .4) 100%);
}
#mnBox::after {
content: attr(data-h);
position: absolute;
bottom: 60px;
text-align: center;
filter: blur(1px);
z-index: 12;
}
</style>
<div id="mnBox" data-h="小九生日快乐"></div>
<script>
let wyyy = document.createElement('iframe');
wyyy.src = 'https://music.163.com/outchain/player?type=2&id=541326593&auto=1&height=66';
wyyy.style.display = 'none';
document.getElementById('mnBox').appendChild(wyyy);
</script>
|
|