gpt4 book ai didi

html - CSS3 - 将背景图片变成 CD

转载 作者:太空宇宙 更新时间:2023-11-04 15:52:50 25 4
gpt4 key购买 nike

假设我有一张这样尺寸的图片:

http://userserve-ak.last.fm/serve/126/23679395.jpg

使用 CSS3 和诸如此类的东西,有什么办法可以把它做成像 CD 一样的东西吗?你知道整体在中间(最好是透明的)和圆边等等。

最佳答案

我不确定透明中间,但这会给你 CD 形状 ( http://jsfiddle.net/CkYcN/ ):

HTML:

<div class="cd">
<div class="hole"></div>
</div>

CSS:

.cd {
-moz-border-radius: 63px;
-webkit-border-radius: 63px;
border-radius: 63px;
background-image: url('http://userserve-ak.last.fm/serve/126/23679395.jpg');
width: 126px;
height: 126px;
position: relative;
}

.cd .hole {
width: 30px;
height: 30px;
position: absolute;
background-color: #fff;
left: 48px;
top: 48px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
}

关于html - CSS3 - 将背景图片变成 CD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10965179/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com