主頁 > 移動端開發 > 最小高度不擴大

最小高度不擴大

2022-01-16 19:04:57 移動端開發

所以,我正在制作一個網路作品集作為我的專案,我設法找到了一個問題。當我在“關于我”部分使用 min-height 時,該部分似乎沒有根據內容調整其高度。可能是因為我在導航欄中使用了浮動,但我不太確定。如果有人可以幫助我,我將不勝感激。提前致謝。

這是我的 HTML 和 CSS 代碼:

/* global */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}


/* animations */

@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes popup {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* Navbar */

header {
  width: 100%;
  height: 64px;
  text-align: center;
  background-color: #1a374d;
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  font-weight: bold;
  position: fixed;
  z-index: 1;
}

header li {
  list-style: none;
  font-weight: bold;
}

header a {
  color: #b1d0e0;
}

header .brandLong {
  width: auto;
  height: 64px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b1d0e0;
}

header .brandShort {
  width: auto;
  height: 64px;
  float: left;
  display: none;
  align-items: center;
  justify-content: center;
  color: #b1d0e0;
}

header .menu {
  width: 50%;
  min-width: 350px;
  height: 100%;
  float: right;
}

header .menu ul {
  width: 100%;
  height: inherit;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

header .menu li {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .menu ul a {
  width: 25%;
  height: inherit;
  display: inline-block;
  transition: 0.3s;
  font-weight: 400;
}

header .menu ul a:hover {
  background-color: #b1d0e0;
  color: #1a374d;
  transition: 0.3s;
  font-weight: 400;
}

header #menuToggle {
  display: none;
}

header .menu-icon {
  display: none;
}


/* Home Section */

.home {
  min-height: 100vh;
}

.home .container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}

.home .container img {
  height: 100%;
  animation: popup 0.8s ease-in-out;
}

.home .container .text {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  justify-content: center;
  animation: appear 1.6s;
}

.home .container .text h1 {
  font-size: 72px;
  font-weight: bold;
  line-height: auto;
}

.home .container .text h1 span {
  color: #1a374d;
}

.home .container .text p {
  font-size: 24px;
  margin-top: 20px;
  letter-spacing: 2px;
  line-height: 35px;
}

.home .container .arrow {
  font-size: 24px;
  animation: bounce 2s ease-in-out infinite, appear 1.6s;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 77%;
  margin: 0 0 0 35%;
  width: 50%;
  font-weight: bold;
}

.home .container .arrow a {
  color: #1a374d;
}

.home .container .arrow a i {
  font-size: 48px;
  margin-top: 5px;
}


/* About */

.about {
  min-height: 100vh;
  background-color: #406882;
  color: white;
  padding: 0 80px;
}

.about .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}

.about .container h1 {
  font-size: 64px;
  text-align: center;
  margin: 150px 0 100px 0;
}

.about .container h2 {
  font-size: 40px;
}

.about .container h3 {
  font-weight: 400;
  margin-bottom: 50px;
  font-size: 24px;
}

.about .container .aboutContainer {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .container .aboutContainer .desc1 {
  width: 25%;
  text-align: justify;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
}

.about .container .aboutContainer .desc1 .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about .container .aboutContainer .desc1 .top p {
  line-height: 28px;
  margin-top: 12px;
  font-size: 20px;
  font-weight: normal;
}

.about .container .aboutContainer .desc1 .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .container .aboutContainer .desc2 {
  width: 30%;
  background-image: url(asset/me2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
  border-radius: 40px;
  margin: 20px;
}

.about .container .aboutContainer .desc2 img {
  height: 100%;
}

.about .container .aboutContainer .desc3 {
  width: 25%;
  padding-left: 50px;
}

.about .container .aboutContainer .desc3 h2 {
  margin-bottom: 12px;
}

.about .container .aboutContainer .desc3 ul li {
  font-size: 20px;
  margin-bottom: 8px;
  margin-left: 20px;
}


/* social media */

.socialMedia {
  display: flex;
  margin-top: 12px;
  justify-content: space-evenly;
  width: 80%;
}

.socialMedia .instagram {
  background-color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dd2a7b;
  border-radius: 50%;
  transition: 0.5s;
  font-size: 24px;
}

.socialMedia .email {
  background-color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea4335;
  border-radius: 50%;
  transition: 0.5s;
  font-size: 24px;
}

.socialMedia .email:hover {
  background-color: #ea4335;
  color: white;
  transition: 0.5s;
}

.socialMedia .instagram:hover {
  background-color: #dd2a7b;
  color: white;
  transition: 0.5s;
}

.socialMedia .linkedin {
  background-color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0077b5;
  border-radius: 50%;
  transition: 0.5s;
  font-size: 24px;
}

.socialMedia .linkedin:hover {
  background-color: #0077b5;
  color: white;
  transition: 0.5s;
}

.socialMedia .spotify {
  background-color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ed761;
  border-radius: 50%;
  transition: 0.5s;
  font-size: 24px;
}

.socialMedia .spotify:hover {
  background-color: #1ed761;
  color: white;
  transition: 0.5s;
}

.socialMedia .github {
  background-color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171515;
  border-radius: 50%;
  transition: 0.5s;
  font-size: 24px;
}

.socialMedia .github:hover {
  background-color: #171515;
  color: white;
  transition: 0.5s;
}


/* Education background */

.about .container .edu {
  margin: 50px 0 100px 0;
}

.about .container .edu h2 {
  margin-bottom: 24px;
}

.about .container .edu table {
  font-size: 24px;
  border-collapse: collapse;
}

.about .container .edu table td {
  padding: 15px;
  padding-right: 100px;
}

.about .container .edu table thead {
  background-color: #6998ab;
  font-weight: 600;
}

.about .container .edu table tbody {
  background-color: #b1d0e0;
}

.about .container .edu table tbody tr:nth-child(2) {
  background-color: #a0c4d6;
}


/* Media Query */

@media screen and (max-width: 1200px) {
  .home .container img {
    display: none;
  }
  .home .container .text {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    justify-content: center;
    animation: appear 1.6s;
  }
  .home .container .arrow {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  /* NavBar */
  header {
    display: block;
    padding: 0;
  }
  .brandLong {
    display: none;
  }
  .brandShort {
    display: flex;
    margin-left: 80px;
  }
  .menu {
    width: 100%;
    height: auto;
  }
  .menu ul {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .menu ul a {
    text-align: left;
    width: 100%;
    height: 50px;
    background-color: #1a374d;
  }
  .menu-icon {
    width: 200px;
    height: inherit;
    display: block;
    position: absolute;
    top: 18px;
    right: 0;
    color: #b1d0e0;
  }
  #menuToggle:checked~ul {
    max-height: 350px;
  }
  .menu-icon i {
    font-size: 1.7em;
  }
  .home .container .text h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 480px) {
  .brandShort {
    display: flex;
    margin-left: 40px;
  }
  .menu-icon {
    width: 100px;
  }
  .home .container .text h1 {
    font-size: 36px;
  }
  .home .container .arrow a {
    display: none;
  }
}
<html lang="pt-BR">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="landingPage.css">
  <title>Christopher's Portfolio</title>
</head>

<body>
  <!-- Nav Bar -->
  <header>
    <a href="#homeSection">
      <figure class="brandLong">Christopher Nathanael Tessy</figure>
    </a>
    <a href="#homeSection">
      <figure class="brandShort">Christopher N. T.</figure>
    </a>
    <nav class="menu">
      <input type="checkbox" id="menuToggle">
      <label for="menuToggle" class="menu-icon"><i class="fa fa-bars"></i></label>
      <ul>
        <a href="#homeSection">
          <li>Home</li>
        </a>
        <a href="#aboutSection">
          <li>About Me</li>
        </a>
        <a href="#">
          <li>Portfolio</li>
        </a>
        <a href="#">
          <li>Contact</li>
        </a>
      </ul>
    </nav>
  </header>

  <!-- Home Section -->
  <section class="home" id="homeSection">
    <div class="container">
      <img src="asset/me1.png" alt="Christopher NT">
      <div class="text">
        <h1>
          Hey there! I'm <span>Christopher Nathanael Tessy</span>
        </h1>
        <p>Welcome to my personal web portfolio where I will showcase my best of the best works</p>
      </div>
      <div class="arrow">
        <a href="#aboutSection">About me</a>
        <a href="#aboutSection"><i class="fas fa-angle-double-down"></i></a>
      </div>
    </div>
  </section>

  <!-- About Me Section -->
  <section class="about" id="aboutSection">
    <div class="container">
      <h1>About Me</h1>
      <h2>Christopher Nathanael Tessy</h2>
      <h3>Front-End Web Developer</h3>
      <div class="aboutContainer">
        <div class="desc1">
          <div class="top">
            <h2>Who am I?</h2>
            <p>My name is Christopher Nathanael Tessy. I am a dedicated and hardworking computer science student with a strong passion in front-end web development equipped with strong designing abilities with proven successes in designing posters, banners,
              backdrops, social media, and merchandise for multiple years. Committed to working as a collaborative and positive team member. Bilingual, communicative, and ready to join my next team.
            </p>
          </div>
          <div class="bottom">
            <h2>Social Media</h2>
            <div class="socialMedia">
              <a href="mailto:[email protected]">
                <div class="email">
                  <span class="far fa-envelope"></span>
                </div>
              </a>
              <a href="https://www.instagram.com/christophertessy_/">
                <div class="instagram">
                  <span class="fab fa-instagram"></span>
                </div>
              </a>
              <a href="https://www.linkedin.com/in/christopher-nathanael-tessy-b30339220/">
                <div class="linkedin">
                  <span class="fab fa-linkedin-in"></span>
                </div>
              </a>
              <a href="https://open.spotify.com/user/21z7frm7cr3jctz2c6zv6nafa?si=bd8ea929cc274a96">
                <div class="spotify">
                  <span class="fab fa-spotify"></span>
                </div>
              </a>
              <a href="https://github.com/TessyJr">
                <div class=" github">
                  <span class="fab fa-github"></span>
                </div>
              </a>
            </div>
          </div>
        </div>
        <div class="desc2">

        </div>
        <div class="desc3">
          <h2>Software and Programming Languages</h2>
          <p>
            <ul>
              <li>Photoshop</li>
              <li>Visual Studio Code</li>
              <li>Figma</li>
              <li>HTML</li>
              <li>CSS</li>
              <li>JavaScript</li>
              <li>C  </li>
            </ul>
          </p>

        </div>
      </div>
      <div class="edu">
        <h2>Education Background</h2>
        <table>
          <thead>
            <tr>
              <td>Year</td>
              <td>Level of Education</td>
              <td>Description</td>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td>2009-2015</td>
              <td>Primary School</td>
              <td>Sekolah Bina Gita Gemilang</td>
            </tr>
            <tr>
              <td>2015-2021</td>
              <td>High School</td>
              <td>Penabur Secondary Kelapa Gading</td>
            </tr>
            <tr>
              <td>2021-2025</td>
              <td>University</td>
              <td>Bina Nusantara University</td>
            </tr>
          </tbody>
        </table>
      </div>
    </div>
  </section>
</body>

</html>

這是我面臨的問題: 背景顏色不覆寫底部區域

uj5u.com熱心網友回復:

洗掉高度屬性

 .about .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
}

uj5u.com熱心網友回復:

min-height: 100vh 到 body 元素應該可以解決問題。這里,100vh 表示初始 body 高度將占視口高度的 100%,最好使用:

height : 100vh;

轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/411884.html

標籤:

上一篇:在影像精靈上放置一個鏈接

下一篇:如何使用htmlcss將垂直文本移動到左下角?

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • 【從零開始擼一個App】Dagger2

    Dagger2是一個IOC框架,一般用于Android平臺,第一次接觸的朋友,一定會被搞得暈頭轉向。它延續了Java平臺Spring框架代碼碎片化,注解滿天飛的傳統。嘗試將各處代碼片段串聯起來,理清思緒,真不是件容易的事。更不用說還有各版本細微的差別。 與Spring不同的是,Spring是通過反射 ......

    uj5u.com 2020-09-10 06:57:59 more
  • Flutter Weekly Issue 66

    新聞 Flutter 季度調研結果分享 教程 Flutter+FaaS一體化任務編排的思考與設計 詳解Dart中如何通過注解生成代碼 GitHub 用對了嗎?Flutter 團隊分享如何管理大型開源專案 插件 flutter-bubble-tab-indicator A Flutter librar ......

    uj5u.com 2020-09-10 06:58:52 more
  • Proguard 常用規則

    介紹 Proguard 入口,如何查看輸出,如何使用 keep 設定入口以及使用實體,如何配置壓縮,混淆,校驗等規則。

    ......

    uj5u.com 2020-09-10 06:59:00 more
  • Android 開發技術周報 Issue#292

    新聞 Android即將獲得類AirDrop功能:可向附近設備快速分享檔案 谷歌為安卓檔案管理應用引入可安全隱藏資料的Safe Folder功能 Android TV新主界面將顯示電影、電視節目和應用推薦內容 泄露的Android檔案暗示了傳說中的谷歌Pixel 5a與折疊屏新機 谷歌發布Andro ......

    uj5u.com 2020-09-10 07:00:37 more
  • AutoFitTextureView Error inflating class

    報錯: Binary XML file line #0: Binary XML file line #0: Error inflating class xxx.AutoFitTextureView 解決: <com.example.testy2.AutoFitTextureView android: ......

    uj5u.com 2020-09-10 07:00:41 more
  • 根據Uri,Cursor沒有獲取到對應的屬性

    Android: 背景:呼叫攝像頭,拍攝視頻,指定保存的地址,但是回傳的Cursor檔案,只有名稱和大小的屬性,沒有其他諸如時長,連ID屬性都沒有 使用 cursor.getInt(cursor.getColumnIndexOrThrow(MediaStore.Video.Media.DURATIO ......

    uj5u.com 2020-09-10 07:00:44 more
  • Android連載29-持久化技術

    一、持久化技術 我們平時所使用的APP產生的資料,在記憶體中都是瞬時的,會隨著斷電、關機等丟失資料,因此android系統采用了持久化技術,用于存盤這些“瞬時”資料 持久化技術包括:檔案存盤、SharedPreference存盤以及資料庫存盤,還有更復雜的SD卡記憶體儲。 二、檔案存盤 最基本存盤方式, ......

    uj5u.com 2020-09-10 07:00:47 more
  • Android Camera2Video整合到自己專案里

    背景: Android專案里呼叫攝像頭拍攝視頻,原本使用的 MediaStore.ACTION_VIDEO_CAPTURE, 后來因專案需要,改成了camera2 1.Camera2Video 官方demo有點問題,下載后,不能直接整合到專案 問題1.多次拍攝視頻崩潰 問題2.雙擊record按鈕, ......

    uj5u.com 2020-09-10 07:00:50 more
  • Android 開發技術周報 Issue#293

    新聞 谷歌為Android TV開發者提供多種新功能 Android 11將自動填表功能整合到鍵盤輸入建議中 谷歌宣布Android Auto即將支持更多的導航和數字停車應用 谷歌Pixel 5只有XL版本 搭載驍龍765G且將比Pixel 4更便宜 [圖]Wear OS將迎來重磅更新:應用啟動時間 ......

    uj5u.com 2020-09-10 07:01:38 more
  • 海豚星空掃碼投屏 Android 接收端 SDK 集成 六步驟

    掃碼投屏,開放網路,獨占設備,不需要額外下載軟體,微信掃碼,發現設備。支持標準DLNA協議,支持倍速播放。視頻,音頻,圖片投屏。好點意思。還支持自定義基于 DLNA 擴展的操作動作。好像要收費,沒體驗。 這里簡單記錄一下集成程序。 一 跟目錄的build.gradle添加私有mevan倉庫 mave ......

    uj5u.com 2020-09-10 07:01:43 more
最新发布
  • 歡迎頁輪播影片

    如圖,引導開始,球從上落下,同時淡入文字,然后文字開始輪播,最后一頁時停止,點擊進入首頁。 在來看看效果圖。 重力球先不講,主要歡迎輪播簡單實作 首先新建一個類 TextTranslationXGuideView,用于影片展示 文本是類似的,最后會有個圖片箭頭影片,布局很簡單,就是一個 TextVi ......

    uj5u.com 2023-04-20 08:40:31 more
  • 【FAQ】關于華為推送服務因營銷訊息頻次管控導致服務通訊類訊息

    一. 問題描述 使用華為推送服務下發IM訊息時,下發訊息請求成功且code碼為80000000,但是手機總是收不到訊息; 在華為推送自助分析(Beta)平臺查看發現,訊息發送觸發了頻控。 二. 問題原因及背景 2023年1月05日起,華為推送服務對咨詢營銷類訊息做了單個設備每日推送數量上限管理,具體 ......

    uj5u.com 2023-04-20 08:40:11 more
  • 歡迎頁輪播影片

    如圖,引導開始,球從上落下,同時淡入文字,然后文字開始輪播,最后一頁時停止,點擊進入首頁。 在來看看效果圖。 重力球先不講,主要歡迎輪播簡單實作 首先新建一個類 TextTranslationXGuideView,用于影片展示 文本是類似的,最后會有個圖片箭頭影片,布局很簡單,就是一個 TextVi ......

    uj5u.com 2023-04-20 08:39:36 more
  • 【FAQ】關于華為推送服務因營銷訊息頻次管控導致服務通訊類訊息

    一. 問題描述 使用華為推送服務下發IM訊息時,下發訊息請求成功且code碼為80000000,但是手機總是收不到訊息; 在華為推送自助分析(Beta)平臺查看發現,訊息發送觸發了頻控。 二. 問題原因及背景 2023年1月05日起,華為推送服務對咨詢營銷類訊息做了單個設備每日推送數量上限管理,具體 ......

    uj5u.com 2023-04-20 08:39:13 more
  • iOS從UI記憶體地址到讀取成員變數(oc/swift)

    開發除錯時,我們發現bug時常首先是從UI顯示發現例外,下一步才會去定位UI相關連的資料的。XCode有給我們提供一系列debug工具,但是很多人可能還沒有形成一套穩定的除錯流程,因此本文嘗試解決這個問題,順便提出一個暴論:UI顯示例外問題只需要兩個步驟就能完成定位作業的80%: 定位例外 UI 組 ......

    uj5u.com 2023-04-19 09:16:23 more
  • FIDE重磅更新!性能飛躍!體驗有禮!

    FIDE 開發者工具重構升級啦!實作500%性能提升,誠邀體驗! 一直以來不少開發者朋友在社區反饋,在使用 FIDE 工具的程序中,時常會遇到諸如加載不及時、代碼預覽/渲染性能不如意的情況,十分影響開發體驗。 作為技術團隊,我們深知一件趁手的開發工具對開發者的重要性,因此,在2023年開年,FinC ......

    uj5u.com 2023-04-19 09:16:15 more
  • 游戲內嵌社區服務開放,助力開發者提升玩家互動與留存

    華為 HMS Core 游戲內嵌社區服務提供快速訪問華為游戲中心論壇能力,支持玩家直接在游戲內瀏覽帖子和交流互動,助力開發者擴展內容生產和觸達的場景。 一、為什么要游戲內嵌社區? 二、游戲內嵌社區的典型使用場景 1、游戲內打開論壇 您可以在游戲內繪制論壇入口,為玩家提供沉浸式發帖、瀏覽、點贊、回帖、 ......

    uj5u.com 2023-04-19 09:15:46 more
  • iOS從UI記憶體地址到讀取成員變數(oc/swift)

    開發除錯時,我們發現bug時常首先是從UI顯示發現例外,下一步才會去定位UI相關連的資料的。XCode有給我們提供一系列debug工具,但是很多人可能還沒有形成一套穩定的除錯流程,因此本文嘗試解決這個問題,順便提出一個暴論:UI顯示例外問題只需要兩個步驟就能完成定位作業的80%: 定位例外 UI 組 ......

    uj5u.com 2023-04-19 09:14:53 more
  • FIDE重磅更新!性能飛躍!體驗有禮!

    FIDE 開發者工具重構升級啦!實作500%性能提升,誠邀體驗! 一直以來不少開發者朋友在社區反饋,在使用 FIDE 工具的程序中,時常會遇到諸如加載不及時、代碼預覽/渲染性能不如意的情況,十分影響開發體驗。 作為技術團隊,我們深知一件趁手的開發工具對開發者的重要性,因此,在2023年開年,FinC ......

    uj5u.com 2023-04-19 09:14:08 more
  • 游戲內嵌社區服務開放,助力開發者提升玩家互動與留存

    華為 HMS Core 游戲內嵌社區服務提供快速訪問華為游戲中心論壇能力,支持玩家直接在游戲內瀏覽帖子和交流互動,助力開發者擴展內容生產和觸達的場景。 一、為什么要游戲內嵌社區? 二、游戲內嵌社區的典型使用場景 1、游戲內打開論壇 您可以在游戲內繪制論壇入口,為玩家提供沉浸式發帖、瀏覽、點贊、回帖、 ......

    uj5u.com 2023-04-19 09:08:34 more