codecamp

百度智能小程序 文本视图

cover-view 文本视图

解释:覆盖在原生组件之上的文本视图。只支持嵌套 cover-view、cover-image 组件。客户端创建的原生组件,不支持嵌套在其它组件中使用。

属性说明

属性 类型 默认值 必填 说明

scroll-top

number

设置顶部滚动偏移量,仅在设置了 overflow-y: scroll 成为滚动元素后生效

示例

在开发者工具中打开

1597198417(1)

代码示例 :文本视图

view class="wrap">
    <view class="card-area">
        <map class="map"
            longitude="{{longitude}}"
            latitude="{{latitude}}">
            <cover-view class="cover-view">
                <cover-view class="flex-item demo-text-1"></cover-view>
                <cover-view class="flex-item demo-text-2"></cover-view>
                <cover-view class="flex-item demo-text-3"></cover-view>
            </cover-view>
        </map>
    </view>
</view>
Page({
    data: {
        latitude: '40.042500',
        longitude: '116.274040'
    }
});
.map {
    width: 100%;
    height: 2.67rem;
    border-radius: 8px;
}

.cover-view {
    opacity: .7;
    position: relative;
    margin: 22% 25%;
    display: flex;
    flex-direction: row;
}

.flex-item {
    width: .64rem;
    height: .89rem;
}

.demo-text-1 {
    background: #6895FF;
}

.demo-text-2 {
    background: #8FB1FF;
}

.demo-text-3 {
    background: #C3D1FF;
}

.card-area {
    height: 2.66rem;
}

覆盖在其他原生组件上的视图区域,颜色需与下层元素拉开层次,否则将影响内容识别。

正确

上层元素与下层颜色反差适宜,内容清晰易识别

错误

上层元素与下层颜色接近,内容模糊不清


    常见问题

    Q:cover-view 可以使用 border 吗

    A: cover-view 为原生组件,原生组件为系统提供的控件不支持单边设置;对于 cover-view 只支持基本的定位、布局、文本样式。不支持设置单边的 border、background-image、shadow、overflow: visible 等。


    百度智能小程序 图片视图
    百度智能小程序 可移动视图区域
    温馨提示
    下载编程狮App,免费阅读超1000+编程语言教程
    取消
    确定
    目录

    百度智能小程序开发文档

    百度智能小程序 组件

    百度智能小程序 地图

    百度智能小程序 画布

    百度智能小程序 API

    百度智能小程序 界面

    百度智能小程序 关注小程序引导组件

    百度智能小程序 自定义组件

    百度智能小程序 媒体

    百度智能小程序 设备

    百度智能小程序 拨打电话

    百度智能小程序 内存警报

    百度智能小程序 手机联系人

    百度智能小程序 用户截屏事件

    百度智能小程序 第三方平台

    百度智能小程序 开放接口

    百度智能小程序 百度收银支付

    百度智能小程序 分包预下载

    百度智能小程序 数据分析

    百度智能小程序 服务端

    百度智能小程序 云开发

    百度智能小程序 初始化

    百度智能小程序 云函数

    百度智能小程序 服务端初始化

    百度智能小程序 服务器获取上下文

    百度智能小程序 服务端云函数

    百度智能小程序 开发教程

    百度智能小程序 功能开发

    百度智能小程序 基本原理

    百度智能小程序 小程序自动化

    百度智能小程序 视频教程

    关闭

    MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }