一、在线树状图思维导图
在线树状图可以用作思维导图,是一种被大众广泛使用的方法。其主要依据是树状图的三要素:结点、连线、标签。在线树状图思维导图可用于组织各种信息,例如课程大纲、计划流程、策略等,以便更好地记忆和理解。使用在线树状图思维导图,可以让您更加清晰地记住信息并思考问题。
以下是使用JavaScript、HTML和CSS制作在线树状图思维导图的示例代码:
Online Tree Chart Mind Map .node {
position: relative;
width: 200px;
padding: 10px;
border-radius: 10px;
background-color: #fff;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.node label {
font-size: 18px;
font-weight: bold;
}
.node input[type=text] {
width: 100%;
height: 30px;
margin-top: 10px;
border: none;
border-radius: 5px;
padding: 5px;
}
.node .add-child {
position: absolute;
right: -30px;
top: 50%;
transform: translateY(-50%);
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #000;
color: #fff;
font-size: 20px;
font-weight: bold;
text-align: center;
line-height: 30px;
cursor: pointer;
}
.node .add-child:hover {
background-color: #1A1A1A;
}
.line {
position: absolute;
top: 50%;
}
.line:after {
content: "";
display: block;
width: 100px;
height: 1px;
background-color: #000;
margin-left: 10px;
}
+
原创文章,作者:小蓝,如若转载,请注明出处:https://www.506064.com/n/270818.html