Slide Icon Menu

Size
4,910 Kb
Views
38,456

How do I make an slide icon menu?

Haven't made a pen in a while, so here it is. What is a slide icon menu? How do you make a slide icon menu? This script and codes were developed by Hugo DarbyBrown on 09 August 2022, Tuesday.

Slide Icon Menu Previews

Slide Icon Menu - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Slide Icon Menu</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel='stylesheet prefetch' href='http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css'>
<link rel='stylesheet prefetch' href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700'> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ html { background-color: #7d7e7d; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7D7E7D', endColorstr='#FF777777'); background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdkN2U3ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzc3Nzc3NyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7d7e7d), color-stop(100%, #777777)); background-image: -moz-linear-gradient(top, #7d7e7d 0%, #777777 100%); background-image: -webkit-linear-gradient(top, #7d7e7d 0%, #777777 100%); background-image: linear-gradient(to bottom, #7d7e7d 0%, #777777 100%); height: 100%;
}
* { box-sizing: border-box;
}
ul { list-style: none; margin: 0; padding: 0; width: 15em;
}
ul li { background-color: #45484d; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF45484D', endColorstr='#FF444444'); background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ1NDg0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzQ0NDQ0NCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #45484d), color-stop(100%, #444444)); background-image: -moz-linear-gradient(top, #45484d 0%, #444444 100%); background-image: -webkit-linear-gradient(top, #45484d 0%, #444444 100%); background-image: linear-gradient(to bottom, #45484d 0%, #444444 100%); box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), inset 0 -1px 2px rgba(0, 0, 0, 0.2); color: rgba(255, 255, 255, 0.9); cursor: pointer; font-family: 'Noto Sans', sans-serif; font-size: 1.2em; height: 3em; line-height: 2.8; padding-left: 1em; position: relative; text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3), -1px -1px 4px rgba(255, 255, 255, 0.1); transition: 0.4s border ease-in-out; width: 100%;
}
ul li:before { color: rgba(255, 255, 255, 0.9); font-family: 'FontAwesome', sans-serif; font-size: 1.8em; line-height: 1.6; position: absolute; left: -1.3em; top: 0;
}
ul li:first-child { border-left: 6px solid #2ecc72;
}
ul li:first-child:before { content: '\f015'; font-size: 2.2em; line-height: 1.4; left: -1.2em;
}
ul li:first-child:hover { border-left: 3em solid #2ecc72;
}
ul li:nth-child(2) { border-left: 6px solid #8e45ad;
}
ul li:nth-child(2):before { content: '\f073'; left: -1.3em;
}
ul li:nth-child(2):hover { border-left: 3em solid #8e45ad;
}
ul li:nth-child(3) { border-left: 6px solid #e67e12;
}
ul li:nth-child(3):before { content: '\f008'; left: -1.4em;
}
ul li:nth-child(3):hover { border-left: 3em solid #e67e12;
}
ul li:nth-child(4) { border-left: 6px solid #e74c4c;
}
ul li:nth-child(4):before { content: '\f03e'; left: -1.4em;
}
ul li:nth-child(4):hover { border-left: 3em solid #e74c4c;
}
ul li:nth-child(5) { border-left: 6px solid #3499db;
}
ul li:nth-child(5):before { content: '\f05a'; font-size: 2.1em; left: -1.2em; line-height: 1.5;
}
ul li:nth-child(5):hover { border-left: 3em solid #3499db;
}
ul li:nth-child(6) { border-left: 6px solid #f2c40f;
}
ul li:nth-child(6):before { content: '\f003';
}
ul li:nth-child(6):hover { border-left: 50px solid #f2c40f;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <ul> <li>HOME</li> <li>NEWS</li> <li>VIDEOS</li> <li>PICTURES</li> <li>ABOUT</li> <li>CONTACT</li>
</ul> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

Slide Icon Menu - Script Codes CSS Codes

html { background-color: #7d7e7d; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7D7E7D', endColorstr='#FF777777'); background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdkN2U3ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzc3Nzc3NyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7d7e7d), color-stop(100%, #777777)); background-image: -moz-linear-gradient(top, #7d7e7d 0%, #777777 100%); background-image: -webkit-linear-gradient(top, #7d7e7d 0%, #777777 100%); background-image: linear-gradient(to bottom, #7d7e7d 0%, #777777 100%); height: 100%;
}
* { box-sizing: border-box;
}
ul { list-style: none; margin: 0; padding: 0; width: 15em;
}
ul li { background-color: #45484d; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF45484D', endColorstr='#FF444444'); background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ1NDg0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzQ0NDQ0NCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #45484d), color-stop(100%, #444444)); background-image: -moz-linear-gradient(top, #45484d 0%, #444444 100%); background-image: -webkit-linear-gradient(top, #45484d 0%, #444444 100%); background-image: linear-gradient(to bottom, #45484d 0%, #444444 100%); box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), inset 0 -1px 2px rgba(0, 0, 0, 0.2); color: rgba(255, 255, 255, 0.9); cursor: pointer; font-family: 'Noto Sans', sans-serif; font-size: 1.2em; height: 3em; line-height: 2.8; padding-left: 1em; position: relative; text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3), -1px -1px 4px rgba(255, 255, 255, 0.1); transition: 0.4s border ease-in-out; width: 100%;
}
ul li:before { color: rgba(255, 255, 255, 0.9); font-family: 'FontAwesome', sans-serif; font-size: 1.8em; line-height: 1.6; position: absolute; left: -1.3em; top: 0;
}
ul li:first-child { border-left: 6px solid #2ecc72;
}
ul li:first-child:before { content: '\f015'; font-size: 2.2em; line-height: 1.4; left: -1.2em;
}
ul li:first-child:hover { border-left: 3em solid #2ecc72;
}
ul li:nth-child(2) { border-left: 6px solid #8e45ad;
}
ul li:nth-child(2):before { content: '\f073'; left: -1.3em;
}
ul li:nth-child(2):hover { border-left: 3em solid #8e45ad;
}
ul li:nth-child(3) { border-left: 6px solid #e67e12;
}
ul li:nth-child(3):before { content: '\f008'; left: -1.4em;
}
ul li:nth-child(3):hover { border-left: 3em solid #e67e12;
}
ul li:nth-child(4) { border-left: 6px solid #e74c4c;
}
ul li:nth-child(4):before { content: '\f03e'; left: -1.4em;
}
ul li:nth-child(4):hover { border-left: 3em solid #e74c4c;
}
ul li:nth-child(5) { border-left: 6px solid #3499db;
}
ul li:nth-child(5):before { content: '\f05a'; font-size: 2.1em; left: -1.2em; line-height: 1.5;
}
ul li:nth-child(5):hover { border-left: 3em solid #3499db;
}
ul li:nth-child(6) { border-left: 6px solid #f2c40f;
}
ul li:nth-child(6):before { content: '\f003';
}
ul li:nth-child(6):hover { border-left: 50px solid #f2c40f;
}
Slide Icon Menu - Script Codes
Slide Icon Menu - Script Codes
Home Page Home
Developer Hugo DarbyBrown
Username hugo
Uploaded August 09, 2022
Rating 4.5
Size 4,910 Kb
Views 38,456
Do you need developer help for Slide Icon Menu?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Hugo DarbyBrown (hugo) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!