Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
324d66cc
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3216
Star
106
Fork
815
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
94
列表
看板
标记
里程碑
合并请求
70
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
94
Issue
94
列表
看板
标记
里程碑
合并请求
70
合并请求
70
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
324d66cc
编写于
5月 20, 2022
作者:
study夏羽
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add preview
上级
2043a705
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
57 addition
and
17 deletion
+57
-17
docs/component/canvas.md
docs/component/canvas.md
+2
-0
docs/component/map.md
docs/component/map.md
+1
-1
docs/component/rich-text.md
docs/component/rich-text.md
+1
-0
docs/component/swiper.md
docs/component/swiper.md
+49
-16
docs/component/web-view.md
docs/component/web-view.md
+4
-0
未找到文件。
docs/component/canvas.md
浏览文件 @
324d66cc
...
...
@@ -42,6 +42,7 @@
```
> Script
```
vue
<
script
>
export
default
{
onReady
:
function
(
e
)
{
var
context
=
uni
.
createCanvasContext
(
'
firstCanvas
'
)
...
...
@@ -68,6 +69,7 @@ export default {
}
}
}
</
script
>
```
:::
...
...
docs/component/map.md
浏览文件 @
324d66cc
...
...
@@ -231,7 +231,7 @@ MapContext.on('markerClusterCreate', callback) 触发时,通过 [MapContext.ad
export
default
{
data
()
{
return
{
id
:
0
,
// 使用 marker点击事件 需要填写id
id
:
0
,
// 使用 marker点击事件 需要填写id
title
:
'
map
'
,
latitude
:
39.909
,
longitude
:
116.39742
,
...
...
docs/component/rich-text.md
浏览文件 @
324d66cc
...
...
@@ -136,6 +136,7 @@ export default {
}
}
}
</
script
>
```
:::
...
...
docs/component/swiper.md
浏览文件 @
324d66cc
...
...
@@ -88,23 +88,21 @@ change 事件返回 detail 中包含一个 source 字段,表示导致变更的
<!-- 本示例未包含完整css,获取外链css请参考上文,在hello uni-app项目中查看 -->
<
template
>
<view>
<view
class=
"uni-padding-wrap"
>
<view
class=
"page-section swiper"
>
<view
class=
"page-section-spacing"
>
<swiper
class=
"swiper"
:indicator-dots=
"indicatorDots"
:autoplay=
"autoplay"
:interval=
"interval"
:duration=
"duration"
>
<swiper-item>
<view
class=
"swiper-item uni-bg-red"
>
A
</view>
</swiper-item>
<swiper-item>
<view
class=
"swiper-item uni-bg-green"
>
B
</view>
</swiper-item>
<swiper-item>
<view
class=
"swiper-item uni-bg-blue"
>
C
</view>
</swiper-item>
</swiper>
</view>
</view>
<view
class=
"uni-margin-wrap"
>
<swiper
class=
"swiper"
circular
:indicator-dots=
"indicatorDots"
:autoplay=
"autoplay"
:interval=
"interval"
:duration=
"duration"
>
<swiper-item>
<view
class=
"swiper-item uni-bg-red"
>
A
</view>
</swiper-item>
<swiper-item>
<view
class=
"swiper-item uni-bg-green"
>
B
</view>
</swiper-item>
<swiper-item>
<view
class=
"swiper-item uni-bg-blue"
>
C
</view>
</swiper-item>
</swiper>
</view>
<view
class=
"swiper-list"
>
<view
class=
"uni-list-cell uni-list-cell-pd"
>
<view
class=
"uni-list-cell-db"
>
指示点
</view>
...
...
@@ -115,6 +113,7 @@ change 事件返回 detail 中包含一个 source 字段,表示导致变更的
<switch
:checked=
"autoplay"
@
change=
"changeAutoplay"
/>
</view>
</view>
<view
class=
"uni-padding-wrap"
>
<view
class=
"uni-common-mt"
>
<text>
幻灯片切换时长(ms)
</text>
...
...
@@ -160,5 +159,39 @@ export default {
}
</
script
>
```
> Style
```
vue
<
style
>
.uni-margin-wrap
{
width
:
690
rpx
;
width
:
100%
;
}
.swiper
{
height
:
300
rpx
;
}
.swiper-item
{
display
:
block
;
height
:
300
rpx
;
line-height
:
300
rpx
;
text-align
:
center
;
}
.swiper-list
{
margin-top
:
40
rpx
;
margin-bottom
:
0
;
}
.uni-common-mt
{
margin-top
:
60
rpx
;
position
:
relative
;
}
.info
{
position
:
absolute
;
right
:
20
rpx
;
}
.uni-padding-wrap
{
width
:
550
rpx
;
padding
:
0
100
rpx
;
}
</
style
>
```
:::
docs/component/web-view.md
浏览文件 @
324d66cc
...
...
@@ -38,6 +38,9 @@
|:-|:-|:-|:-|
|color|String|#00FF00|进度条颜色|
::: preview https://hellouniapp.dcloud.net.cn/pages/component/web-view/web-view
```
html
<template>
<view>
...
...
@@ -63,6 +66,7 @@
</style>
```
:::
注意:
-
小程序仅支持加载网络网页,不支持本地html
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录