<ons-carousel swipeable overscrollable auto-scroll fullscreen
auto-scroll-ratio="0.2" var="carousel" style="position:initial"
on-carousel-change="selected($index)">
</ons-carousel>
我怎麼能叫我的功能?
<ons-carousel swipeable overscrollable auto-scroll fullscreen
auto-scroll-ratio="0.2" var="carousel" style="position:initial"
on-carousel-change="selected($index)">
</ons-carousel>
我怎麼能叫我的功能?
ons-carousel
每次更改時都會觸發postchange
event。你可以聽它並運行你的功能。
如果使用AngularJS與溫泉UI(我猜你做,因爲你有var
屬性),你可以爲這個事件直接與ons-postchange
attribute指定的處理程序:ons-postchange="myHandler($event, myData)"
。
嘿!我們同時回答!測試版7的好工作! – Munsterlander
@AniketDhole只要做'ons-postchange =」callalert()「'。 –
對於AngularJS,溫泉僅支持此事件模型:ons-postchange
。 on-carousel-change
不是有效的事件,因此不支持ons-carousel
。
工作的例子和說明張貼在這裏:
我有固定的重複的代碼片段,並使其更具可讀性,但問題是仍然缺乏對問題的清楚解釋。 – Starscream1984