I created two illustration carousel and another carousel of a house, and I need two buttons, Illustration and Plant, when loading the page, will show the carousel illustration as main, and when clicking on the plant carousel should hide illustration , and so vice versa.
Example:
<button class="ative btn btn-outline-info">ILUSTRAÇÃO</button>
<button class="ative btn btn-outline-info">PLANTAS</button>
<div id="bannerIluminacao" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="Imagem.png"></div>
</div>
</div>
</div>
Plant Code:
<div id="bannerPlantas" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="Imagem.png"></div>
</div>
</div>
</div>