gpt4 book ai didi

javascript - Razor Html.RadioButton 位置到图像中

转载 作者:太空宇宙 更新时间:2023-11-04 10:05:32 29 4
gpt4 key购买 nike

我需要有关如何处理需要格式化 html 页面的任务的建议。假设我有一个圆圈图像,我需要在它周围放置 7 个单选按钮。理论上可以通过使用 dev 对象来完成它,但在我看来这种方式做起来太复杂了。有没有其他方法可以将单选按钮放置在圆圈周围?

我们将不胜感激。

最佳答案

https://jsfiddle.net/Le4nz2L5/

<!DOCTYPE html>
<html>
<head>
<style class="cp-pen-styles">
html,
body {
width: 100%;
height: 100%;
}
body {
position: relative;
background-color: #ddd;
overflow: hidden;
}
.main,
.container {
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100px;
height: 100px;
border-radius: 50%;
}

.main {
background-color: #B81365;
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.35);
cursor: pointer;
z-index: 50;
}

.main .title {
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 80px;
font-size: 3em;
line-height: 80px;
text-align: center;
color: #fafafa;
}

.container {
z-index: 10;
}

.plate {
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width:13px;
height:13px;
text-align:center;
}
.main + .container .plate:nth-of-type(1) {
top: -180%;
}
.container .plate:nth-of-type(2) {
top: -130%;
right: -120%;
}
.container .plate:nth-of-type(3) {
right: -170%;
}
.container .plate:nth-of-type(4) {
right: -120%;
bottom: -130%;
}
.container .plate:nth-of-type(5) {
bottom: -180%;
}
.container .plate:nth-of-type(6) {
bottom: -130%;
left: -140%;
}
.container .plate:nth-of-type(7) {
left: -190%;
}
.container .plate:nth-of-type(8) {
top: -130%;
left: -140%;
}
</style></head><body>
<center>
based on:<a href="http://codepen.io/Oka/pen/BNjwNz">Colin Hall-Coates codepen</a>
</center>
<label class='main' for='check'>
<div class='title'>
<i class='fa fa-bars'></i>
</div>
</label>
<div class='container'>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
</div>

</body></html>

关于javascript - Razor Html.RadioButton 位置到图像中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38034818/

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