Home  >  Article  >  Web Front-end  >  通过css3实现的动画导航菜单代码_html/css_WEB-ITnose

通过css3实现的动画导航菜单代码_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:44:041084browse

用css3样式实现的滑动导航菜单,html代码如下

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>CSS3 Minimalistic Navigation Menu | Tutorialzine demo</title><link rel="stylesheet" type="text/css" href="styles.css" /></head><body><h1>CSS3 Minimalistic Navigation Menu</h1><h2><a href="http://www.100sucai.com">Read the tutorial on Tutorialzine &raquo;</a></h2><div id="main">  <ul id="navigationMenu">    <li> <a class="home" href="http://www.100sucai.com"> <span>Home</span> </a> </li>    <li> <a class="about" href="http://www.100sucai.com"> <span>About</span> </a> </li>    <li> <a class="services" href="http://www.100sucai.com"> <span>Services</span> </a> </li>    <li> <a class="portfolio" href="http://www.100sucai.com"> <span>Portfolio</span> </a> </li>    <li> <a class="contact" href="http://www.100sucai.com"> <span>Contact us</span> </a> </li>  </ul></div></body></html>

  

效果图:

 

演示及下载

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn