当前位置:编程学习 > JS >>

纯CSS3精仿Win7风格的开始菜单

纯CSS3模拟制作的Windows7风格的开始菜单,整体的色彩和那些图标搭配的挺和谐,预览效果时请注意要在支持CSS3的浏览器中运行,IE9以下将不支持本效果,最好使用火狐或Opera以及Chrome等主流浏览器。
答案:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>纯CSS3制作的Windows 7开始菜单</title>
    <style type="text/css">
        body { font-family:Segoe UI, Arial, Sans-Serif; font-size:12px; color:#4b4b4b; background:#fff url() no-repeat scroll center center;}
        #meta { position:absolute; top:70px; right:20px; }
        #meta div { padding:20px; color:#000; margin: 0 0 20px;
                -moz-border-radius:5px;-webkit-border-radius:5px;
                background:rgba(255,255,255,0.50)}
        #meta a {color:#005aff;}
        #meta a img {margin:0 10px 0 0; border:solid 1px #000;}  
              
        #startmenu { border:solid 1px #102a3e; overflow:visible; display:inline-block; margin:30px 0 0 0;
                     -moz-border-radius:5px;-webkit-border-radius:5px; position:relative;
                     box-shadow: inset 0 0 1px #fff; -moz-box-shadow: inset 0 0 1px #fff; -webkit-box-shadow: inset 0 0 1px #fff;
                     background-color:#619bb9;
                     background: -moz-linear-gradient(top, rgba(50, 123, 165, 0.75), rgba(46, 75, 90, 0.75) 50%, rgba(92, 176, 220, 0.75));
                     background: -webkit-gradient(linear, center top, center bottom, from(#327aa4),color-stop(45%, #2e4b5a), to(#5cb0dc)); }
        #programs, #links {float:left; display:block; padding:0; list-style:none;}
        #programs { background:#fff; border:solid 1px #365167; margin:7px 0 7px 7px;
                    box-shadow: 0 0 1px #fff; -moz-box-shadow: 0 0 1px #fff; -webkit-box-shadow: 0 0 1px #fff;
                    -moz-border-radius:3px;-webkit-border-radius:3px;}
        #programs a { border:solid 1px transparent; display:block; padding:3px; margin:3px; 
                      color:#4b4b4b; text-decoration:none; min-width:220px;}
        #programs a:hover {border:solid 1px #7da2ce; 
                     -moz-border-radius:3px; -webkit-border-radius:3px;
                     box-shadow: inset 0 0 1px #fff; -moz-box-shadow: inset 0 0 1px #fff; -webkit-box-shadow: inset 0 0 1px #fff;
                     background-color:#cfe3fd;
                     background: -moz-linear-gradient(top, #dcebfd, #c2dcfd);
                     background: -webkit-gradient(linear, center top, center bottom, from(#dcebfd), to(#c2dcfd));}
        #programs a img {border:0; vertical-align:middle; margin:0 5px 0 0;}             
        #links {margin:7px; margin-top:-30px;}
        #links li.icon {text-align:center;}
        #links a {border:solid 1px transparent; display:block; margin:5px 0; position:relative;
                      color:#fff; text-decoration:none; min-width:120px;}
        #links a:hover {border:solid 1px #000;
                     -moz-border-radius:3px; -webkit-border-radius:3px;
                     box-shadow: 0 0 1px #fff; -moz-box-shadow: inset 0 0 1px #fff; -webkit-box-shadow: inset 0 0 1px #fff;
                     background-color:#658da0;
                     background: -moz-linear-gradient(center left, rgba(81,115,132,0.55), rgba(121,163,184,0.55) 50%, rgba(81,115,132,0.55));
                     background: -webkit-gradient(linear, 0% 100%, 100% 100%, from(#517384), color-stop(50%, #79a3b8), to(#517384)); 
                     }
        #links a span { padding:5px; display:block; }
        #links a:hover span  { background: -moz-linear-gradient(center top, transparent, transparent 49%, rgba(2,37,58,0.5) 50%, rgba(63,111,135,0.5));
                    background: -webkit-gradient(linear, center top, center bottom, from(transparent), color-stop(49%, transparent), 
                               color-stop(50%, rgba(2,37,58,0.5)), to(rgba(63,111,135,0.5))); }
    </style>
</head>
<body>
<div style="width:480px;margin:0 auto">
    <div id="startmenu">
        <ul id="programs">
            <li><a href="#"><img src="/jscss/demoimg/201207/firefox-32.png" alt="" />Mozilla Firefox</a></li>
            <li><a href="#"><img src="/jscss/demoimg/201207/chrome.png" alt="" />Google Chrome</a></li>
            <li><a href="#"><img src="/jscss/demoimg/201207/safari.png" alt="" />Safari</a></li>
            <li><a href="#"><img src="/jscss/demoimg/201207/opera.png" alt="" />Opera</a></li>
            <li><a href="#"><img src="/jscss/demoimg/201207/ie.png" alt="" />Internet Explorer</a></li>

            <li><a href="#"><img src="/jscss/demoimg/201207/rss_32.png" alt="" />RSS Feeds</a></li>
            <li><a href="#"><img src="/jscss/demoimg/201207/twitter_32.png" alt="" />Twitter</a></li>
            <li><a href="#"><img src="/jscss/demoimg/201207/delicious_32.png" alt="" />Delicious</a></li>
        </ul>
        <ul id="links">
            <li class="icon"><img src="/jscss/demoimg/201207/folder.png" alt="" /></li>
            <li><a href="#"><span>Documents</span></a></li>

            <li><a href="#"><span>Pictures</span></a></li>
            <li><a href="#"><span>Music</span></a></li>
            <li><a href="#"><span>Computer</span></a></li>
            <li><a href="#"><span>Network</span></a></li>
            <li><a href="#"><span>Connect to</span></a></li>
        </ul>

    </div>
</div>

	<div style="width:640px;margin:10px auto 20px auto; padding:0 0 0 380px;overflow:hidden">
<!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>

	<a href="#" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
</div>
<!-- JiaThis Button END -->
    <script type="text/javascript">
        var _gaq = _gaq || [];
        _gaq.push(['_setAccount', 'UA-21395429-1']);
        _gaq.push(['_trackPageview']);
        (function () {
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-易做图ytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
        })();
</script>
</div>
</body>
</html>

上一个:分享一个导航点击变换样式的代码
下一个:css3仿制圆形旋转的苹果工具栏图标

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,