hovering thing in bootstrap code example
Example 1: how to show text at the time of hover in bootstrap
<div class="text-center my-3">
<b-button v-b-tooltip.hover title="Tooltip directive content">
Hover Me
</b-button>
<b-button id="tooltip-target-1">
Hover Me
</b-button>
<b-tooltip target="tooltip-target-1" triggers="hover">
I am tooltip <b>component</b> content!
</b-tooltip>
</div>
Example 2: bootsrap caption on hover
<!--Zoom effect-->
<div class="view overlay zoom">
<img src="https://mdbootstrap.com/img/Photos/Horizontal/Nature/6-col/img%20(131).jpg" class="img-fluid " alt="smaple image">
<div class="mask flex-center">
<p class="white-text">Zoom effect</p>
</div>
</div>