使用Grid 组件实现选座场景

编译一个页面,实现选座场景

要求:通过Gird组件组件,实现选中位置,颜色叠加

HarmonyOS
2024-05-26 15:14:21
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
netos

使用的 OS 能力及相关的核心 API

  •  Grid 组件
  •  colorBlend 方法
  •  color属性

核心代码解释

build() { 
  Row() { 
    Column({ space: 6 }) { 
      Text(this.message) 
        .fontSize(50) 
        .fontWeight(FontWeight.Bold) 
      Grid() { 
        ForEach(this.Number, (day: string, index1: number) => { 
          GridItem() { 
            Column() { 
              Stack() { 
                Text(day) 
                  .zIndex(999) 
                  .fontSize(16) 
                  .fontColor(Color.Black) 
                  .backgroundColor(this.color) 
                  .width('100%') 
                  .height('100%') 
                  .textAlign(TextAlign.Center) 
                  .clip(true) 
                  .borderRadius(10) 
                  .onClick(() => { 
                    if (this.num1 != index1) { 
                      this.num1 = index1 
                    } else { 
                      this.num1 = -1 
                    } 
                    this.num2 = Math.floor(this.num1 / 6) 
                    console.info(JSON.stringify(this.num1)) 
                    console.info(JSON.stringify(this.num2)) 
                  }) 
                if (index1 == this.num1) { 
                  Text() 
                    .fontSize(16) 
                    .fontColor(Color.Black) 
                    .backgroundColor(Color.Green) 
                    .width('100%') 
                    .height('100%') 
                    .textAlign(TextAlign.Center) 
                    .colorBlend(false ? this.StartColor[this.num2] : this.StartColor[this.num2]) 
                    .clip(true) 
                    .borderRadius(10) 
                    .width('100%') 
                    .margin({ top: 0 }) 
                    .position({}) 
                } 
              } 
            } 
          } 
        }, (day: string) => day) 
      } 
      .columnsTemplate('1fr 1fr 1fr 1fr 1fr 1fr') 
      .rowsTemplate('1fr 1fr 1fr 1fr 1fr 1fr') 
      .columnsGap(10) 
      .rowsGap(10) 
      .width('90%') 
      .backgroundColor(0xFAEEE0) 
      .height(500) 
    } 
    .width('100%') 
    .margin({ top: 5 }) 
  } 
  .height('100%') 
}

实现效果

分享
微博
QQ
微信
回复
2024-05-27 20:16:13
相关问题
编译一个页面,实现场景
631浏览 • 1回复 待解决
Grid组件如何实现高度自适应
3078浏览 • 1回复 待解决
Grid如何实现拖拽功能
2442浏览 • 1回复 待解决
HarmonyOS Grid组件拖动异常
221浏览 • 1回复 待解决
grid组件及数据懒加载
879浏览 • 1回复 待解决
grid如何怎么实现拖拽功能
751浏览 • 1回复 待解决
Grid组件性能问题有哪些?
347浏览 • 1回复 待解决
HarmonyOS 可移动GridItem的Grid组件
152浏览 • 1回复 待解决
Grid组件显示异常该怎么处理?
238浏览 • 1回复 待解决
HarmonyOS 关于Grid组件拖拽排序的问题
291浏览 • 0回复 待解决
HarmonyOS 使用Grid和GriItem组合的问题
208浏览 • 1回复 待解决
在哪些场景使用MongoDB?
3396浏览 • 1回复 待解决
Grid组件的scrollBar是否支持自定义
2120浏览 • 1回复 待解决
HarmonyOS grid组件的auto-fit没效果
352浏览 • 1回复 待解决
使用swiper组件实现viewPager效果
1264浏览 • 1回复 待解决
关于Grid容器和WaterFlow使用上的问题
802浏览 • 1回复 待解决