[TOC]
## 第一步:在index.wxml中添加图片
> 这里可以使用三目运算
```
<image bindtap="click" src="{{show?'/images/ciwei.png':'/images/ciwei_hl.png'}}"></image>
```
## 第二步:在index.wxss中修饰图片
```
image{
width: 100rpx;
height: 100rpx;
}
```
## 第三步:在index.js中添加事件
```
Page({
data: {
show: false
},
click() {
if (this.data.show) {
this.setData({
show: false
})
} else {
this.setData({
show: true
})
}
});
```