一、在線樹狀圖思維導圖
在線樹狀圖可以用作思維導圖,是一種被大眾廣泛使用的方法。其主要依據是樹狀圖的三要素:結點、連線、標籤。在線樹狀圖思維導圖可用於組織各種信息,例如課程大綱、計劃流程、策略等,以便更好地記憶和理解。使用在線樹狀圖思維導圖,可以讓您更加清晰地記住信息並思考問題。
以下是使用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/zh-hk/n/270818.html