mirror of
https://github.com/tabler/tabler-icons.git
synced 2025-08-24 22:45:52 +02:00
iconfont search
This commit is contained in:
@@ -39,6 +39,8 @@
|
|||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .1);
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .1);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-top-left-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabler-icons {
|
.tabler-icons {
|
||||||
@@ -84,6 +86,20 @@
|
|||||||
margin: 2rem 0 3rem;
|
margin: 2rem 0 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.search-bar {
|
||||||
|
padding: 0.75rem 1.5rem;
|
||||||
|
background: #fff;
|
||||||
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .1);
|
||||||
|
border-radius: 3px;
|
||||||
|
border-bottom-left-radius: 0px;
|
||||||
|
border-bottom-right-radius: 0px;
|
||||||
|
}
|
||||||
|
.search-bar input[name=search]{
|
||||||
|
padding:0.5rem;
|
||||||
|
background: #fafbfc;
|
||||||
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .1);
|
||||||
|
width:100%;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
@@ -96,6 +112,10 @@
|
|||||||
<p class="text-muted">version <%= v %></p>
|
<p class="text-muted">version <%= v %></p>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<div class="search-bar">
|
||||||
|
<input type="text" name="search" placeholder="type to search"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="tabler-icons">
|
<div class="tabler-icons">
|
||||||
<% glyphs.forEach(function(glyph) { %>
|
<% glyphs.forEach(function(glyph) { %>
|
||||||
@@ -112,6 +132,25 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
const input = document.querySelector("div.search-bar input");
|
||||||
|
const iconContainer = document.querySelector("div.box div.tabler-icons");
|
||||||
|
let icons = [];
|
||||||
|
|
||||||
|
document.querySelectorAll("div.tabler-icon").forEach(icon => icons.push({
|
||||||
|
el : icon,
|
||||||
|
name : icon.querySelector('strong').innerHTML,
|
||||||
|
}));
|
||||||
|
|
||||||
|
input.addEventListener('input', search);
|
||||||
|
|
||||||
|
function search(evt){
|
||||||
|
let searchValue = evt.target.value;
|
||||||
|
let iconsToShow = searchValue.length ? icons.filter(icon => icon.name.includes(searchValue)) : icons;
|
||||||
|
iconContainer.innerHTML = "";
|
||||||
|
iconsToShow.forEach(icon => iconContainer.appendChild(icon.el));
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Reference in New Issue
Block a user