> 文档中心 > HarmonyOS应用开发-放大与缩小效果展现

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  180) {     width -=10;     height -=10;     this.widthVal = width     this.heightVal = height }else{     prompt.showToast({message:"不能再缩小了"}) }    },}

效果展示:

 

麦克风网