Advertisement

HTML/CSS/JavaScript圆形导航栏炫酷的动态效果

阅读量:

圆形导航栏设计与实现

此功能兼容的浏览器包括:360、FireFox、Chrome、Safari、Opera、傲游、搜狗以及世界之窗。然而,对于IE8及更早版本的浏览器则不提供支持。

复制代码
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Circle</title>
    
    <style>
    html, body {
      height: 100%;
    }
    
    body {
      background: beige;
      font-family: Alegreya Sans, sans-serif;
    }
    
    nav {
      display: block;
      position: fixed;
      width: 500px;
      height: 500px;
      -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
      -webkit-transform: tr

全部评论 (0)

还没有任何评论哟~