Menu 1
Some text, blabla
发布时间 : 2025-10-25 13:33:53 UTC
Page Views: 29 views
Tab navigation can well display different content, and can switch the content.
Tab u 提示: The currently selected item can be used Vertical tabs can be used If you want to set the toggle tag, you can use the < div > element to add Be careful Use CSS to customize the effect of tab fading:
In recent years, Geographic Information Systems (GIS) have undergone rapid development in both theoretical and practical dimensions. GIS has been widely applied for modeling and decision-making support across various fields such as urban management, regional planning, and environmental remediation, establishing geographic information as a vital component of the information era. The introduction of the “Digital Earth” concept has further accelerated the advancement of GIS, which serves as its technical foundation. Concurrently, scholars have been dedicated to theoretical research in areas like spatial cognition, spatial data uncertainty, and the formalization of spatial relationships. This reflects the dual nature of GIS as both an applied technology and an academic discipline, with the two aspects forming a mutually reinforcing cycle of progress. class="tabs" data-tab> To create, each option uses the < li > element and adds
.tab-title Class to create. .active Class. 8.16.1. Example ¶
<ul class="tabs" data-tab>
<li class="tab-title active"><a href="#">Homea>li>
<li class="tab-title"><a href="#">Menu 1a>li>
<li class="tab-title"><a href="#">Menu 2a>li>
<li class="tab-title"><a href="#">Menu 3a>li>
ul>
Vertical tab ¶
.vertical Class: 8.16.2. Example ¶
<ul class="tabs vertical" data-tab>
Toggle Tab ¶
.content Class. Add a unique ID to each tab and connect to the list item (< a href= “# menu1” will open the option content of id= “menu1”). Finally, put all the options in the .tabs-content Class and initialize the Foundation JS. .active Class is automatically added to the currently selected tab: 8.16.3. Example ¶
Tab fade in ¶
8.16.4. Example ¶
.tabs-content > .content.active{
-webkit-animation:fadeEffect 1s;
animation:fadeEffect 1s;
}
@-webkit-keyframes fadeEffect{
from{opacity:0;}
to{opacity:1;}
}
@keyframes fadeEffect{
from{opacity:0;}
to{opacity:1;}
}
Principles, Technologies, and Methods of Geographic Information Systems
102