博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS3制作的一款很酷的错位式导航菜单,可用于博客
阅读量:5092 次
发布时间:2019-06-13

本文共 4475 字,大约阅读时间需要 14 分钟。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">

<html xmlns="">
<head>
<title>CSS3制作的一款很酷的错位式导航菜单,可用于博客丨芯晴网页特效丨CsrCode.CN</title>
<style>
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input{margin:0; padding:0;}
body { background: #1d1d1d; color: #fff; background-image:url("/imagesforcode/201210/bg.png"); background-repeat:repeat-x; }
h1 { font: bold 65px/60px Helvetica, Arial, Sans-serif; text-align: center; color: #eee; text-shadow: 0px 2px 6px #333; }
h1 small{ font-size: 20px; text-transform:uppercase; letter-spacing: 14px; display: block; color: #ccc; }
h2 a { display: block; text-decoration: none; margin: 0 0 30px 0; font: italic 45px Georgia, Times, Serif;  text-align: center; color: #bfe1f1; text-shadow: 0px 2px 6px #333; }
h2 a:hover { color: #90bcd0; }
h3 { font-style:italic; border-left:10px solid #eee; padding:10px 20px; margin:30px 0; color:#eee; }
h3 code { display:block; }

/* WRAPPER */

#wrapper { width:800px; margin:40px auto; }

/* LIST #1 */

#list1 { }
#list1 ul { list-style:none; text-align:center; border-top:1px solid #eee; border-bottom:1px solid #eee; padding:10px 0; }
#list1 ul li { display:inline; text-transform:uppercase; padding:0 10px; letter-spacing:10px; }
#list1 ul li a { text-decoration:none; color:#eee; }
#list1 ul li a:hover { text-decoration:underline; }

/* LIST #2 */

#list2 { width:320px; }
#list2 ol { font-style:italic; font-family:Georgia, Times, serif; font-size:24px; color:#bfe1f1;  }
#list2 ol li { }
#list2 ol li p { padding:8px; font-style:normal; font-family:Arial; font-size:13px; color:#eee; border-left: 1px solid #999; }
#list2 ol li p em { display:block; }

/* LIST #3 */

#list3 { }
#list3 ul { list-style-image: url("/imagesforcode/201210/arrow.png"); color:#eee; font-size:18px; }
#list3 ul li { line-height:30px; }

/* LIST #4 */

#list4 { width:320px; font-family:Georgia, Times, serif; font-size:15px; }
#list4 ul { list-style: none; }
#list4 ul li { }
#list4 ul li a { display:block; text-decoration:none; color:#000000; background-color:#FFFFFF; line-height:30px;
 border-bottom-style:solid; border-bottom-width:1px; border-bottom-color:#CCCCCC; padding-left:10px; cursor:pointer; }
#list4 ul li a:hover { color:#FFFFFF; background-image:url(/imagesforcode/201210/hover.png); background-repeat:repeat-x; }
#list4 ul li a strong { margin-right:10px; }

/* LIST #5 */

#list5 { color:#eee; }
#list5 ol { font-size:18px; }
#list5 ol li { }
#list5 ol li ol { list-style-image: url("/imagesforcode/201210/nested.png"); padding:5px 0 5px 18px; font-size:15px; }
#list5 ol li ol li { color:#bfe1f1; height:15px; margin-left:10px; }

/* LIST #6 */

#list6 { font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif; }
#list6 ol { list-style-type: upper-roman; color:#eee; font-size:14px; list-style-position: inside; }
#list6 ol li { }

/* LIST #7 */

#list7 { }
#list7 ul { color:#eee; font-size:18px; font-family:Georgia, Times, serif; }
#list7 ul li { display: inline; }
#list7 ul li:after { content: ", "; }
#list7 ul li.last:after { content: ". "; }

/* LIST #8 */

#list8 {  }
#list8 ul { list-style:none; }
#list8 ul li { font-family:Georgia,serif,Times; font-size:18px; }
#list8 ul li a { display:block; width:300px; height:28px; background-color:#333; border-left:5px solid #222; border-right:5px solid #222; padding-left:10px;
 text-decoration:none; color:#bfe1f1; }
#list8 ul li a:hover {  -moz-transform:rotate(-5deg); -moz-box-shadow:10px 10px 20px #000000;
 -webkit-transform:rotate(-5deg); -webkit-box-shadow:10px 10px 20px #000000;
 transform:rotate(-5deg); box-shadow:10px 10px 20px #000000; }
</style>
</head>
<body>
<div id="wrapper">
 <h1>Styling your lists<small>using only CSS</small></h1>

 <div id="list8">

  <ul>
   <li><a href="#">Home</a></li>
   <li><a href="#">Blog</a></li>
   <li><a href="#">About</a></li>
   <li><a href="#">Contact</a></li>
  </ul>
 </div>
</div>

</body>

</html>

<br>需要用到几个小图片:<a href="/imagesforcode/201210/bg.png" target=_blank>bg.png</a>、<a href="/imagesforcode/201210/arrow.png" target=_blank>arrow.png</a>、<a href="/imagesforcode/201210/hover.png" target=_blank>hover.png</a>、<a href="/imagesforcode/201210/nested.png" target=_blank>nested.png</a> <br><font color=skyblue>▲ 目前IE8及以前版本不兼容CSS3,请使用IE9/火狐/Chrome浏览器运行本效果。<br><hr><p align="center">本特效由 <a href="" target="_blank">芯晴网页特效</a>丨CsrCode.Cn 收集于互联网,只为兴趣与学习交流,不作商业用途。来源:源码爱好者</p></font>

转载于:https://www.cnblogs.com/xx22s/archive/2012/11/01/2750326.html

你可能感兴趣的文章
《软件工程》总结——第八章
查看>>
第一册:lesson ninety-nine。
查看>>
LR性能测试结果样例分析
查看>>
福大软工1816 · 第三次作业 - 结对项目1
查看>>
java-泛型
查看>>
table显示json数据传递
查看>>
GDOI2015的某道题目
查看>>
c# CLI托管工程开启调试c++库工程代码
查看>>
Xerces链接错误原因之/Zc:wchar_t-设置不一致
查看>>
2019牛客暑期多校训练营(第一场)-E(DP)
查看>>
Flash 中与 JS 的通信
查看>>
Android中的WebView
查看>>
JsBridge "Uncaught TypeError: Cannot call method 'callHandler' of undefined", source
查看>>
LeetCode【110. 平衡二叉树】
查看>>
Mybatis 与hibernate
查看>>
第一章:python基础语法| 字符编码| 条件语句...
查看>>
CSS 2. 盒模型|浮动
查看>>
双十一电商打折套路解析
查看>>
JavaWeb之Servlet: ServletConfig 与 ServletContext
查看>>
【学习笔记】ES6标准入门
查看>>