.bottom {
position: absolute;
top: 230px;
/* left: 10px; */
}
.bottom button {
width: 30px;
height: 30px;
cursor: pointer;
border: none;
background: transparent;
/* color: #333;
box-shadow: 0px 1px 10px 2px rgb(10 10 10 / 50%);
padding-left: 10px;
border-radius: 50%;
font-size: 30px;*/
}
.cross {
width: 30px;
height: 30px;
position: relative;
}
.cross::before, .cross::after {
content: ""; /* 伪元素,用来绘制十字架的两条线 */
position: absolute; /* 绝对定位 */
width: 26px;
height: 4px;
background-color: #333; /* 设置为黑色 */
left: 0;
top: 16px;
}
.cross::before {
transform: rotate(90deg); /* 将第一条线旋转45度 */
}
.cross::after {
transform: rotate(-180deg); /* 将第二条线旋转-45度 */
}
.round4,.round5{
border-radius: 50%;
background-color: #333;
position: absolute;
z-index: 1;
}
.round4{
width: 20px;
height: 20px;
top: 8px;
left: 3px;
}
.round5{
width: 8px;
height: 8px;
border: 4px solid #fff;
margin: 2px 0 0 2px;
z-index: 1;
}
<div class="bottom">
<button id="centerPosition">
<!-- <div class="coordinate"></div>
<div class="point"></div> -->
<div class="cross"></div>
<div class="round4">
<div class="round5">
</div>
</div>
</button>
</div>
css画十字架和靶心图标
程序媛之博客2023-10-13 11:09
相关推荐
m0_748247551 小时前
Web 应用项目开发全流程解析与实战经验分享m0_748255022 小时前
前端常用算法集合真的很上进2 小时前
如何借助 Babel+TS+ESLint 构建现代 JS 工程环境?web130933203982 小时前
vue elementUI form组件动态添加el-form-item并且动态添加rules必填项校验方法NiNg_1_2343 小时前
Echarts连接数据库,实时绘制图表详解如若1233 小时前
对文件内的文件名生成目录,方便查阅滚雪球~4 小时前
npm error code ETIMEDOUT沙漏无语4 小时前
npm : 无法加载文件 D:\Nodejs\node_global\npm.ps1,因为在此系统上禁止运行脚本supermapsupport4 小时前
iClient3D for Cesium在Vue中快速实现场景卷帘brrdg_sefg4 小时前
WEB 漏洞 - 文件包含漏洞深度解析