如何使用Angular2

时间:2017-09-29 09:05:24

标签: nativescript angular2-nativescript nativescript-angular

我有一个要在我的nativescript(使用Angular2)应用程序中显示的图像,我想在其中使图像的不同部分可点击。例如,人体图像,我只想知道用户点击了哪个部分。

有没有办法像html ???

一样创建图像映射
<CardView height="450" width="350" marginTop="10">
    <Image src="res://nerves" height="304" width="114" horizontalAlignment="center" verticalAlignment="center"></Image>
</CardView>

enter image description here

1 个答案:

答案 0 :(得分:3)

(touch)元素上使用Image事件绑定。

这是一个在单击图像的第四个象限时打印控制台消息的示例。

import {
  Component
} from '@angular/core';
import * as platform from 'platform';
import {
  TouchGestureEventData
} from 'tns-core-modules/ui/gestures';

@Component({
  moduleId: module.id,
  selector: 'your-component',
  template: `
    <GridLayout>
      <Image src="res://your_image" width="128" height="128"
             (touch)="touchImage($event)"
             verticalAlignment="middle" horizontalAlignment="center"></Image>
    </GridLayout>
  `
})
export class YourComponent {
  touchImage(event: TouchGestureEventData) {
    // This is the density of your screen, so we can divide the measured width/height by it.
    const scale: number = platform.screen.mainScreen.scale;
    if (event.action === 'down') {
      // this is the point that the user just clicked on, expressed as x/y
      // values between 0 and 1.
      const point = {
        y: event.getY() / (event.view.getMeasuredHeight() / scale),
        x: event.getX() / (event.view.getMeasuredWidth() / scale)
      };

      // add custom code to figure out if something significant was "hit"
      if (point.x > 0.5 && point.y > 0.5) {
        console.log('you clicked on the lower right part of the image.');
      }
    }
  }
}