Created
January 22, 2021 12:34
final.hml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<swiper class="container" index="{{index}}"> | |
<div class="swiper-item first-page"> | |
<div class="first-page-content"> | |
<text class="title"> | |
Konumunuz: {{latlon}} | |
</text> | |
<text class="title"> | |
Dogruluk: {{accuracy}} | |
</text> | |
<text class="title"> | |
Batarya Durumu: {{battery}} | |
</text> | |
<input type="button" class="btn" value="Guncelle" onclick="updateData"/> | |
</div> | |
</div> | |
<div class="swiper-item second-page"> | |
<progress class="progress" type="arc" percent="{{percentage}}"/> | |
<input type="button" class="progress-btn" value="Baslat" onclick="startProgressBar"/> | |
<input type="button" class="progress-btn" value="Durdur" onclick="stopProgressBar"/> | |
</div> | |
<div class="swiper-item third-page third-page-content"> | |
<text class="todo-upper-title"> | |
Meeting Notes | |
</text> | |
<list class="todo-wraper"> | |
<list-item for="{{todolist}}" class="todo-item"> | |
<text class="todo-title">{{$item.title}}</text> | |
<text class="todo-title">{{$item.date}}</text> | |
</list-item> | |
</list> | |
</div> | |
<div class="swiper-item fourth-page"> | |
<image class="photo-detail" src="/common/huawei.png"> | |
</image> | |
</div> | |
</swiper> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment