How to insert/embed external web page in one of the slides.
Application have 3 slides , 2nd slide should be a web page. My Swipe left and right should switch the slides. Touch gestures are not expected to be handled with the embedded page.
Please refer to the below repository for details :
<ion-slide-box >
<ion-slide>
<div has-header="true" padding="true" style="width: auto; height: 400px; background-color:lightblue" >
</br></br></br>
Slide 1 {{navTitle}}
</div>
</ion-slide>
<ion-slide>
<div has-header="true" padding="true" style="width: auto; height: 400px; background-color:lightgreen" >
</br></br></br>
Slide 2 {{navTitle}}
***<object data=http://www.web-source.net width="600" height="400">
<embed src=http://www.web-source.net width="600" height="400">
</embed>
Error: Embedded data could not be displayed.
</object>***
</div>
</ion-slide>
<ion-slide>
<div has-header="true" padding="true" style="width: auto; height: 400px; background-color:lightyellow" >
</br></br></br>
Slide 3 {{navTitle}}
</div>
</ion-slide>
</ion-slide-box>