HarmonyOS应用开发教程分享 放大与缩小效果展现

描述

鸿蒙系统

Hml


放大缩小

Css

.container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.box{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
}

Js

import prompt from '@system.prompt';
let width = 200;
let height = 200;
export default {
    data: {
        widthVal:width,
        heightVal:height,
    },
    enlarge(){
        if (width < 400) {
            width +=10;
            height +=10;
            this.widthVal = width
            this.heightVal = height
        }else {
            prompt.showToast({message:"已经达到最大"})
        }
    },
    decrease(){
        if (width > 180) {
            width -=10;
            height -=10;
            this.widthVal = width
            this.heightVal = height
        }else{
            prompt.showToast({message:"不能再缩小了"})

        }
    },
}
打开APP阅读更多精彩内容
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

全部0条评论

快来发表一下你的评论吧 !

×
20
完善资料,
赚取积分