Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footsen

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • footsen
  • footseen
  • Nesting
  • civility
  • index.html
Find file
BlameHistoryPermalink
  • agan's avatar
    xg · ac299fe7
    agan committed a year ago
    ac299fe7
index.html 1.56 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
    <meta content="telephone=no" name="format-detection">
    <meta name="wap-font-scale" content="no">
    <link rel="stylesheet" href="../../css/base.css">
    <link rel="stylesheet" href="../../css/style.css">
    <script src="../../lib/fsize.js"></script>
    <title>直播文明公約</title>
    <style>
        .main {
            width: 10rem;
            height: 74.667rem;
            background: url(./images/bg_cn.jpg) no-repeat;
            background-size: 100% 100%;
            overflow: hidden;
        }

        .main.en {
            width: 10rem;
            height: 128.813rem;
            background: url(./images/bg_en.jpg) no-repeat;
            background-size: 100% 100%;
            overflow: hidden;
        }
    </style>
</head>

<body>
    <div class="main">
    </div>

</body>
<script src="../../lib/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="https://app.ixiulive.com/static/js/webAppComm.js?v=202304251600"></script>
<script>
    if ($firefly.urlData.lang != 2) {
        $('.main').addClass('en');
        $('title').html('Live Broadcasting Civility Convention');
    } else {
        $('.main').removeClass('en');
        $('title').html('直播文明公約');
    }
    $firefly.changeTitle2();
</script>

</html>