CSS3 + jQuery Fullscreen Menu

Developer
Size
2,596 Kb
Views
52,624

How do I make an css3 + jquery fullscreen menu?

Simple, basic and elegant CSS3 and jQuery driven fullscreen menu.. What is a css3 + jquery fullscreen menu? How do you make a css3 + jquery fullscreen menu? This script and codes were developed by Anton Petrov on 27 August 2022, Saturday.

CSS3 + jQuery Fullscreen Menu Previews

CSS3 + jQuery Fullscreen Menu - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS3 + jQuery Fullscreen Menu</title> <script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="css/style.css">
</head>
<body> <link href='http://fonts.googleapis.com/css?family=Raleway:200' rel='stylesheet' type='text/css'>
<ul class="menu">	<li><span>Welcome</span></li>	<li><span>About Us</span></li>	<li><span>What we do</span></li>	<li><span>Our portfolio</span></li>	<li><span>Contact us</span></li>
</ul> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

CSS3 + jQuery Fullscreen Menu - Script Codes CSS Codes

body,
body * { transition: all 300ms ease-out;
}
body.light { background-color: #EEE;
}
body.dark { background-color: #222;
}
body ul.menu { position: absolute; height: 250px; top: 50%; margin-top: -125px; width: auto; margin-left: 50px;
}
body ul.menu li { color: #000; list-style-type: none; line-height: 50px; font-family: 'Raleway', sans-serif; font-size: 50px; text-transform: lowercase;
}
body ul.menu li:hover { color: #EEE; cursor: pointer;
}

CSS3 + jQuery Fullscreen Menu - Script Codes JS Codes

$(document).ready(function(){	$('body').addClass('light');	$('ul.menu li').mouseover(function(){	$('body').addClass('dark').removeClass('light');	});	$('ul.menu li').mouseout(function(){	$('body').addClass('light').removeClass('dark');	});
})
CSS3 + jQuery Fullscreen Menu - Script Codes
CSS3 + jQuery Fullscreen Menu - Script Codes
Home Page Home
Developer Anton Petrov
Username apetrov
Uploaded August 27, 2022
Rating 4.5
Size 2,596 Kb
Views 52,624
Do you need developer help for CSS3 + jQuery Fullscreen 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!

Anton Petrov (apetrov) Script Codes
Create amazing love letters 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!