1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <title>2021全国大学生软件测试大赛</title>
- <link rel="shortcut icon" href="./static/img/logo.png">
- </head>
- <body>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- <script src="./static/jquery-nav.min.js"></script>
- <script language="JavaScript">
- $(document).click(function(){
- $('.nav-list').removeClass('open')
- })
- $('.nav-menu,.nav-list').click(function(e){e.stopPropagation()})
- $('nav').find('.nav-menu').click(function(e){
- $('.nav-list').toggleClass('open')
- })
- $(".fullSlide").hover(function(){
- $(this).find(".prev,.next").stop(true, true).fadeTo("show", 0.5)
- },
- function(){
- $(this).find(".prev,.next").fadeOut()
- });
- $(".fullSlide").slide&&$(".fullSlide").slide({
- titCell: ".hd ul",
- mainCell: ".bd ul",
- effect: "fold",
- autoPlay: true,
- autoPage: true,
- trigger: "click",
- startFun: function(i) {
- var curLi = jQuery(".fullSlide .bd li").eq(i);
- if ( !! curLi.attr("_src")) {
- curLi.css("background-image", curLi.attr("_src")).removeAttr("_src")
- }
- }
- });
- </script>
- </html>
|