Weex组件使用

Weex

一、容器

<div>基本容器

代码示例:

  <!-- div基本容器 -->
  <!-- 注意 -->
  <!-- 支持所有通用样式,特性,flexbox布局 -->
  <!-- 不能直接在标签中添加文本 -->
  <!-- 不可滚动,即使显式设置高度 -->
  <!-- 嵌套不可过多,建议在10层以内 -->
<template>
  <div class="div">
    <text>div 基本容器</text>
  </div>
</template>

<style>
/*div-样式*/
.div{
  background-color: orange;
  color: gray;
  margin: 50px;
  width: auto;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
</style>

界面显示:

<div>

<scroller>滚动容器

特性 说明 类型 描述
show-scrollbar 是否显示滚动条 boolean 默认true
scroll-direction 滚动方向 string ( horizontal, vertical)
loadmoreoffset 触发 loadmore偏移距离 number 默认0
loadmoreretry 是否 loadmore失败重置 number 默认0

代码示例:

<template>
  <scroller class="scroller">
    <div class="scroller-row" repeat="{{list}}">
      <text class="row-title">{{name}}</text>
    </div>
  </scroller>
</template>

<script>
var rowList = [
  {name:"row-0"},
  {name:"row-1"},
  {name:"row-2"},
  {name:"row-3"},
  {name:"row-4"},
  {name:"row-5"},
]
export default {
  data: {
      list: rowList,
    }
}
</script>

<style>
/*scroller样式*/
.scroller{
  width: auto;
  height: 800px;
  background-color: gray;
}
.row-title{
  background-color: orange;
  font-size: 80px;
  margin: 20px;
}
</style>

界面显示:

<scroller>

二、基本组件

<text>文本

特性 说明 类型 描述
value 文本值 string .
样式 说明 类型 描述
color 字体颜色 color
lines 文本行数 number 默认0行,不限制行数
font-size 字体大小 number
font-style 字体样式 string (normal, italic)
font-weight 字体宽度 string (normal, bold, 100, 200, 300, 400, 500, 600, 700, 800, 900)
text-align 对其方式 string (none, underline, line-through)
text-decoration 文本装饰 string (left, center, right)
text-overflow 文本溢出 string (clip, ellipsis)
line-height 行高 number .

代码示例:

<!-- 注意 -->
<!-- text里直接写文本头尾空白会被过滤 -->
<template>
  <div>
    <text class="text" style="lines:2;">{{text}}</text>
  </div>
</template>

<script>
export default {
  data: {
      text: "Weex 是一套简单易用的跨平台开发方案,能以 Web 的开发体验构建高性能、可扩展的原生应用。Vue 是一个轻量并且功能强大的渐进式前端框架。",
    }
}
</script>

<style>
/*text样式*/
.text{
  background-color: gray;
  color: white;
  margin: 20px;
  width: auto;
  height: 200px;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  text-align: center;
  text-overflow: ellipsis;
}
</style>

界面显示:

<text>

<image>图片

特性 说明 类型 描述
src 图片URL string
resize 图片拉伸状态 string (stretch, cover, contain)

代码示例:

<template>
  <!-- 注意 -->
  <!-- 必须明确指定width和height -->
  <!-- <image>中不支持任何组件,需要使用<image>和position来定位实现 -->
  <div class="image-box" >
    <image class="image" resize="cover" src="{{imageURL}}"></image>
  <div class="title-box">
    <text class="title">Alan Mathison Turing</text>
  </div>
</div>
</template>

<script>
export default {
  data: {
      imageURL: "https://img.alicdn.com/tps/TB1dX5NOFXXXXc6XFXXXXXXXXXX-750-202.png",
    }
}
</script>

<style>
/*image样式*/
.image-box {
  background-color: gray;
  width: auto;
  height: 300px;
  justify-content: center;
  align-items: center;
  align-self: center;
}
.image {
  width: 600px;
  height: 200px;
}
/*title样式*/
.title-box {
  width: 750px;
  height: 300px;
  justify-content: center;
  align-items: center;
  position: absolute;
  /*background-color: purple;*/
}
.title {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  background-color: orange;
}
</style>

界面显示:

<image>

<switch>开关

特性 说明 类型 描述
checked 是否开启 boolean 默认 false
disabled 是否可用 boolean 默认 false

代码示例:

<template>
  <div>
    <switch class="switch" checked="true" disabled="true"></switch>
  </div>
</template>
<script>
export default {
}
</script>

<style>
/*switch样式*/
.switch{
  margin: 20px;
  align-self: center;
  margin-top: 20px;
}
</style>

界面显示:

<switch>

<input>单行文本输入

特性 说明 类型 描述
type 控件类型 string (text, password, url, email, tel)
value 文本值 string
placeholder 占位符 string
disabled 是否可用 boolean
autofocus 自动获得输入焦点 boolean
maxlength 输入最大长度 nubmer .
样式 说明 类型 描述
placeholder-color 占位符颜色 color
color 字体颜色 color
font-size 字体大小 number
font-style 字体样式 string (normal, italic)
font-weight 字体宽度 string (normal, bold, 100, 200, 300, 400, 500, 600, 700, 800, 900)
text-align 对其方式 string (none, underline, line-through)

代码示例:

<template>
  <div>
    <input class="input" type="text" placeholder="请输入text" disabled="false" autofocus="false" maxlength="10"></input>
    <input class="input" type="password" placeholder="请输入password" disabled="false" autofocus="false" maxlength="10"></input>
    <input class="input" type="url" placeholder="请输入url" disabled="false" autofocus="false" maxlength="10"></input>
    <input class="input" type="email" placeholder="请输入email" disabled="false" autofocus="false" maxlength="10"></input>
    <input class="input" type="tel" placeholder="请输入tel" disabled="false" autofocus="false" maxlength="10"></input>
  </div>
</template>

<script>
export default {
}
</script>

<style>
/*input样式*/
.input {
  color: black;
  border-width: 2px;
  border-style: solid;
  border-color: #41B883;
  width: auto;
  height: 100px;
  margin: 20px;
  padding: 10px;
  font-size: 30px;

 }
</style>

界面显示:

<input>

<textarea>多行文本输入

特性 说明 类型 描述
value 文本值 string
placeholder 占位符 string
disabled 是否可用 boolean
autofocus 自动获得输入焦点 boolean
rows 输入框行高 number .

代码示例:

<template>
  <div>
    <textarea class="textarea" placeholder="请输入文本" disabled="false" autofocus="false" rows="3"></textarea>
  </div>
</template>

<script>
export default {
}
</script>

<style>
/*textarea样式*/
.textarea{
    font-size: 30px;
    width: 650px;
    margin-top: 20px;
    margin-left: 50px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    color: black;
    border-width: 2px;
    border-style: solid;
    border-color: #41B883;
}
</style>
<textara>

三、多媒体组件

<video>视频

特性 说明 类型 描述
src 视频URL string
play-status 播放状态 string (play, pause)
auto-play 是否自动播放 boolean .

代码示例:

<template>
  <div>
    <video class="video" src="{{videoURL}}" play-status="play" auto-play="false"></video>
  </div>
</template>

<script>
export default {
  data: {
      videoURL: "http://flv2.bn.netease.com/videolib3/1611/01/XGqSL5981/SD/XGqSL5981-mobile.mp4",
    }
}
</script>

<style>
/*video样式*/
.video{
    align-self: center;
    margin-top: 20px;
    width: 650px;
    height: 350px;
}
</style>

界面显示:


<video>

<web>网页

特性 说明 类型 描述
src 网页URL string .

代码示例:

<template>
  <div>
    <web class="web" src="{{webURL}}"> </web>
  </div>
</template>

<script>
export default {
  data: {
      webURL: "https://m.taobao.com",
    }
}
</script>

<style>
/*web样式*/
.web{
  align-self: center;
  margin: 10px;
  width: 750px;
  height: 1200px;
}
</style>

界面显示:

<web>

<slider>轮播图

特性 说明 类型 描述
auto-play 是否自动播放 boolean 默认false
interval 播放间隔 number 毫秒

<indicator>轮播图指示

样式 说明 类型 描述
item-color 点颜色 color
item-selected-color 选中点颜色 color
item-size 点大小 number .

代码示例:

<template>
  <div>
    <slider class="slider" auto-play="ture" interval="3000">
      <div repeat="{{list}}">
        <image class="slider-image" resize="cover" src="{{src}}"></image>
      </div>
    <!-- 注意 -->
    <!-- <indicator>必须充当 <slider> 组件的子组件使用 -->
      <indicator class="slider-dot" style="item-color:gray; item-selected-color:white; item-size:10px;"></indicator>
    </slider>
  </div>
</template>

<script>
var imageList = [
  { src: 'https://gd2.alicdn.com/bao/uploaded/i2/T14H1LFwBcXXXXXXXX_!!0-item_pic.jpg'},
  { src: 'https://gd1.alicdn.com/bao/uploaded/i1/TB1PXJCJFXXXXciXFXXXXXXXXXX_!!0-item_pic.jpg'},
  { src: 'https://gd3.alicdn.com/bao/uploaded/i3/TB1x6hYLXXXXXazXVXXXXXXXXXX_!!0-item_pic.jpg'},
  { src: 'https://gd2.alicdn.com/bao/uploaded/i2/T14H1LFwBcXXXXXXXX_!!0-item_pic.jpg'},
  { src: 'https://gd1.alicdn.com/bao/uploaded/i1/TB1PXJCJFXXXXciXFXXXXXXXXXX_!!0-item_pic.jpg'},
  { src: 'https://gd3.alicdn.com/bao/uploaded/i3/TB1x6hYLXXXXXazXVXXXXXXXXXX_!!0-item_pic.jpg'}
]
export default {
  data: {
      list: imageList,
    }
}
</script>

<style>
/*slider样式*/
.slider{
  width: 750px;
  height: 500px;
  background-color: gray;
}
.slider-image{
  width: 750px;
  height: 500px;
}
.slider-dot{
    width: 750px;
    height: 500px;
    bottom: -200px;
}
</style>

界面显示:

<slider>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容