🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

A dead simple jQuery dropdown plugin which lets you create Bootstrap-style dropdown menus from standard HTML unordered lists.

Drop-Down-Menu Drop-Down

Documentation

dropdown.js

A dropdown menu component based on jQuery. demo

usage

Load dropdown.js in your html

<link rel="stylesheet" href="dropdown.css"> <script src="dropdown.js"></script>

Add dropdown menu content

<div class="dropdown">     <div class="more-btn">         更多         <span class="triangle"></span>     </div>     <ul class="dropdown-menu">         <li>             <a href="javascript:;">待处理订单</a>         </li>         <li>             <a href="javascript:;">售后服务</a>         </li>         <li>             <a href="javascript:;">我的关注</a>         </li>     </ul> </div>

You May Also Like