Wednesday 13 December 2017

Part 17 creating sliders in ionic





in this video, I will show you that how you can create a welcome slider in your ionic application.

Slides make it easy to create galleries, tutorials, and page-based layouts. Slides take a number of configuration options on the ion-slides component.



to create simple slider use this code.



<ion-slides pager>



  <ion-slide style="background-color: green">

    <h2>Slide 1</h2>

  </ion-slide>



  <ion-slide style="background-color: blue">

    <h2>Slide 2</h2>

  </ion-slide>



  <ion-slide style="background-color: red">

    <h2>Slide 3</h2>

  </ion-slide>



</ion-slides>



====================================================

to download full source code and presentation visit our wesite and Blog



website : - http://dotnetlab.in/

source code : - https://github.com/rahuljograna

facebook page :- https://www.facebook.com/DotnetLab-1896440207343189/

visit my blog : - http://aspnetinhindi.blogspot.in

follow me on twitter : https://twitter.com/THEJOGRANA



No comments:

Post a Comment

Part 20 consuming rest api in ionic

in this video, I will show you that how you can consume the rest API. in the previous video we have implemented the asp.net web API projec...