Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div id="menu">
        <ul>
            <li data-menuanchor="one">
                <a href="#one">1</a>
            </li>
            <li data-menuanchor="two">
                <a href="#two">2</a>
            </li>
            <li data-menuanchor="three">
                <a href="#three">3</a>
            </li>
            <li data-menuanchor="four">
                <a href="#four">4</a>
            </li>
            <li data-menuanchor="five">
                <a href="#five">5</a>
            </li>
            <li data-menuanchor="six">
                <a href="#six">6</a>
            </li>
            <li data-menuanchor="seven">
                <a href="#seven">7</a>
            </li>
        </ul>
    </div>
</body>
</html>
 
#menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    ul{
    display: block;
        margin: 0 auto;
        padding: 0;
        list-style-type: none;
        li{
            float: left;
            a{
                display: inline-block;
                width:32px;
                height: 32px;
                text-align: center;
                font-family: "Microsoft YaHei";
                font-size: 1.5rem;
                line-height: 180%;
                text-decoration: none;
                border-radius: 50%;
            }
        }
    }
    .active{
        a{
            background-color: rgba(255,255,255,0.7);
        }
    }
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
toddmarkpro
0viewers