123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>glass-property</title>
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
- integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
- crossorigin="anonymous">
- <link rel="stylesheet" href="./style.css">
- </head>
- <body>
- <div class="ai-spokesgril">
- <a style="text-decoration: none;color:#000; font-size: 32px;font-weight: 900;"
- href="./index.html"><img class="me-3" style="width: 50px;" src="./img/圖片1.png" alt="">AI
- Spokesgirl</a>
- <ul class="navbar-nav ms-auto mb-2 mb-lg-0 me-2">
- <li class="nav-item dropdown">
- <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
- 中/En
- </a>
- <ul class="dropdown-menu" aria-labelledby="navbarDropdown">
- <li><button class="nav-link lan-switch" aria-current="page" set-lan="html:en" onclick="changeLan(this);window.location.reload();" value="en">English</button></li>
- <li><button class="nav-link lan-switch" aria-current="page" set-lan="html:zh" onclick="changeLan(this);window.location.reload();" value="zh">中文</button></li>
- </ul>
- </li>
- </ul>
- </div>
- <section class="sec-usecase">
- <div class="container">
- <div class="row my-5">
- <div class="col m-2">
- <a onclick="direct()" class="demo-btn">
- <h3 class="usecase-sub"><i class="fas fa-circle"></i> <lan set-lan="html:make_video_hand">手動製作影片</lan></h3>
- </a>
- </div>
- <div class="col m-2">
- <a href="#" class="demo-btn">
- <h3 class="usecase-sub"><i class="fas fa-circle"></i> 自動影片製作</h3>
- </a>
- </div>
- </div>
- </div>
- </section>
- <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
- integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
- crossorigin="anonymous"></script>
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js"
- integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT"
- crossorigin="anonymous"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
- <script src="js/lan.js"></script>
- </body>
- </html>
|