# Hover Effect The hover effect is applied to a component in hover state. > **NOTE** > > The APIs of this module are supported since API version 8. Updates will be marked with a superscript to indicate their earliest API version. ## hoverEffect hoverEffect(value: HoverEffect) Sets the hover effect of the component in hover state. **System capability**: SystemCapability.ArkUI.ArkUI.Full **Parameters** | Name| Type | Mandatory| Description | | ------ | ------------------------------------------------ | ---- | ------------------------------------------------------------ | | value | [HoverEffect](ts-appendix-enums.md#hovereffect8) | Yes | Hover effect of the component in hover state.
Default value: **HoverEffect.Auto**| ## Example ```ts // xxx.ets @Entry @Component struct HoverExample { @State isHoverVal: boolean = false build() { Column({ space: 5 }) { Column({ space: 5 }) { Text('Scale').fontSize(20).fontColor(Color.Gray).width('90%').position({ x: 0, y: 80 }) Column() .width('80%').height(200).backgroundColor(Color.Gray) .position({ x: 40, y: 120 }) .hoverEffect(HoverEffect.Scale) .onHover((isHover?: boolean) => { console.info('Scale isHover: ' + isHover as string) this.isHoverVal = isHover as boolean }) Text('Board').fontSize(20).fontColor(Color.Gray).width('90%').position({ x: 0, y: 380 }) Column() .width('80%').height(200).backgroundColor(Color.Gray) .hoverEffect(HoverEffect.Highlight) .position({ x: 40, y: 420 }) .onHover((isHover?: boolean) => { console.info('Highlight isHover: ' +isHover as string) this.isHoverVal = isHover as boolean }) } .hoverEffect(HoverEffect.None) .width('100%').height('100%').border({ width: 1 }) .onHover((isHover?: boolean) => { console.info('HoverEffect.None') this.isHoverVal = isHover as boolean }) } } } ```