mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
42 lines
560 B
HTML
42 lines
560 B
HTML
|
|
<ion-row>
|
|
|
|
<ion-col>
|
|
<button (click)="tapTest('button')" block>
|
|
<div><div><p>Button</p></div></div>
|
|
</button>
|
|
</ion-col>
|
|
|
|
<ion-col>
|
|
<a button (click)="tapTest('link')" block>
|
|
Link
|
|
</a>
|
|
</ion-col>
|
|
|
|
</ion-row>
|
|
|
|
<ion-row>
|
|
|
|
<ion-col>
|
|
<div button (click)="tapTest('div')" block>
|
|
Div w/ (click)
|
|
</div>
|
|
</ion-col>
|
|
|
|
<ion-col>
|
|
<div button block>
|
|
Div w/out (click)
|
|
</div>
|
|
</ion-col>
|
|
|
|
</ion-row>
|
|
|
|
|
|
<div id="logs"></div>
|
|
|
|
<style>
|
|
.activated {
|
|
background-color: yellow !important;
|
|
}
|
|
</style>
|