举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > 鸿蒙设置标签 鸿蒙OS 添加标题行和文本区域

鸿蒙设置标签 鸿蒙OS 添加标题行和文本区域

2023-04-20 09:18 鸿蒙OS开发文档

鸿蒙设置标签 鸿蒙OS 添加标题行和文本区域

鸿蒙设置标签 鸿蒙OS 添加标题行和文本区域

鸿蒙设置标签

实现标题和文本区域最常用的是基础组件 text。text 组件用于展示文本,可以设置不同的属性和样式,文本内容需要写在标签内容区,完整属性和样式信息请参考text。在页面中插入标题和文本区域的示例如下:

<!-- xxx.hml -->
<div class="container">
  <div class="left-container">
    <text class="title-text">{{headTitle}}</text>
    <text class="paragraph-text">{{paragraphFirst}}</text>
    <text class="paragraph-text">{{paragraphSecond}}</text>
  </div>
</div>


.container {
  margin-top: 24px;
  background-color: #ffffff;
}
.left-container {
  flex-direction: column;
  margin-left: 48px;
  width: 460px;
}
.title-text {
  color: #1a1a1a;
  font-size: 36px;
  height: 90px;
  width: 400px;
}
.paragraph-text {
  color: #000000;
  margin-top: 12px;
  font-size: 20px;
  line-height: 30px;
}

// xxx.js
export default {
  data: {
    headTitle: "Capture the Beauty in This Moment",
    paragraphFirst: "Capture the beauty of light during the transition and fusion of ice and water. At the instant of movement and stillness, softness and rigidity, force and beauty, condensing moving moments.",
    paragraphSecond: "Reflecting the purity of nature, the innovative design upgrades your visual entertainment and ergonomic comfort. Effortlessly capture what you see and let it speak for what you feel.",
  },
}
阅读全文
以上是编程学为你收集整理的鸿蒙设置标签 鸿蒙OS 添加标题行和文本区域全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部