i'm working on an app that displays a header with a title and a home button, an image slider below, and button bar below as a footer. the image slider is the default content. is it possible to replace the image slider with an html page once i click on a button in the button bar? or at least hide the image slider and show an html page?
heres my code so far:
<ion-view id="page1" view-title="{{ logo }}" style="background-color:#f1f1f1;">
<ion-nav-buttons side="right">
<button id="page-button5" class="button buttonhome" style="background: transparent; border: 0;">
<img class="home" src="img/finalimages/home.png">
</button>
</ion-nav-buttons>
</ion-nav-bar>
<ion-content padding="false" background-color="#f1f1f1" >
<ion-slides disable-side-menu-drag="" options="{'loop': true}" slider="slider1" delegate-handle="slider1" id="page-slider1" style="width: 100%; ">
<ion-slide-page id="page-slide28" style="background:url("img/swipeHome1.png") no-repeat center;background-size:cover;"></ion-slide-page>
<ion-slide-page id="page-slide27" style="background:url("img/avfsZwJT9WGsBj982ul1_kitten1.jpg") no-repeat center;background-size:cover;"></ion-slide-page>
<ion-slide-page id="page-slide29" style="background:url("img/WE6rB9dZRTiIWQlP5qsA_kitten3.jpg") no-repeat center;background-size:cover;"></ion-slide-page>
</ion-slides>
<div id="page-button-bar2" class="button-bar">
<div style="display: inline;">
<button id="page-button11" style="font-size:12px; background: #f1f1f1 !important; border: 0;" class="button button-stable button-block bottommenu">
<img class="wallet" src="img/finalimages/wallet.png">
<h6 style="margin-top: -10px!important; color: #808080; position: left left">电子竞技</h6>
</button>
</div>
<div style="display: inline;">
<button id="page-button12" style="font-size:12px; background: #f1f1f1 !important; border: 0;" class="button button-stable button-block bottommenu">
<img class="esports" src="img/finalimages/joystick.png">
<h6 style="margin-top: -10px!important; color: #808080; position: left left">电子竞技</h6>
</button>
</div>
<div style="display: inline;">
<button id="page-button13" style="font-size:12px; background: #f1f1f1 !important; border: 0;" class="button button-stable button-block bottommenu">
<img class="events" src="img/finalimages/s-ball.png">
<h6 style="margin-top: -10px!important; color: #808080;">运动赛事</h6>
</button>
</div>
<div style="display: inline;">
<button id="page-button14" style="font-size:12px; background: #f1f1f1 !important; border: 0;" class="button button-stable button-block bottommenu">
<img class="discount" src="img/finalimages/gift.png">
<h6 style="margin-top: -10px!important; color: #808080;">优惠</h6>
</button>
</div>
<div class="dropdown">
<button id="page-button15" ng-click="toggleInfo()" class="button button-stable button-block bottommenu" style="font-size:12px; background: #f1f1f1 !important; border: 0;" ><img class="information" src="img/finalimages/icon-menu.png"><h6 style="margin-top: -10px!important; color: #808080; ">资讯</h6></button>
<div class="dropdown-content dropdown-content-up-info" ng-show="IsInfoVisible">
<a href="#">关於我们</a>
<a href="#">联系我们</a>
<a href="#">用户协议</a>
</div>
</div>
</ion-content>
</ion-view>