Skip to content

Latest commit

 

History

History
177 lines (165 loc) · 4.19 KB

index.md

File metadata and controls

177 lines (165 loc) · 4.19 KB
<style> span{ width: 80px; text-align: justify; float: left; } span:after{ content:'.'; width: 100%; display: inline-block; overflow: hidden; height: 0; }

.menu_list { width: 268px; margin: 0; }

.menu_head { height: 47px; line-height: 47px; padding-left: 38px; font-size: 14px; color: #525252; cursor: pointer; border: 1px solid #f1f1f1; position: relative; margin: 0px; font-weight: bold; background: #51a9f18c; }

.menu_list .current { background: #51a9f18c; }

.menu_nva { line-height: 38px; border-left: 1px solid #51a9f18c; backguound: #fff; border-right: 1px solid #51a9f18c; }

.menu_nva a { display: block; height: 38px; line-height: 38px; padding-left: 38px; color: #777777; background: #fff; text-decoration: none; border-bottom: 1px solid #51a9f18c; }

.menu_nva a:hover { text-decoration: none; } </style>

张翼程 (Eason ZHANG)

硕士在读 帝国理工学院 应用机器学习专业
本科 四川大学 通信工程专业
邮箱 [email protected]
地址 West Kensington Court, Edith Villas, London, W14 9AB

英文版
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#firstpaneDiv .menu_nva:eq(0)").show(); $("#firstpaneDiv h3.menu_head").click(function(){ $(this).addClass("current").next("div.menu_nva").slideToggle(200).siblings("div.menu_nva").slideUp("slow"); $(this).siblings().removeClass("current"); }); $("#secondpane .menu_nva:eq(0)").show(); $("#secondpane h3.menu_head").mouseover(function(){ $(this).addClass("current").next("div.menu_nva").slideDown(400).siblings("div.menu_nva").slideUp("slow"); $(this).siblings().removeClass("current"); }); }); </script>