I don't know exact technical word for this but in following jquery code on 'mouseenter' and 'mouseleave' event the whole div get movement like button clicked (flickers?) and I also used 'mouseover' and 'mouseout' but same problem occurs.
$total_doctors=mysql_fetch_array(mysql_query("select count(*) from doctor"));
Main div:
<div class='mainspan action-nav-button'>
<a href='doctor.php'>
<span> </span>
<i class='fa fa-user-md'></i>
<span>Doctor</span>
<span id='countdoctor'>0</span>
</a>
</div>
Script code:
var docNumbr = <?php echo $total_doctors['0']; ?>;
$(document).ready(function(){
$({countNum: $('#countdoctor').text()}).animate({countNum: docNumbr}, {
duration: 2000,
easing:'linear',
step: function() {
$('#countdoctor').text(Math.floor(this.countNum)+1);
}
});
$('#countdoctor').mouseenter(function(){
$(this).text("Total Records: "+docNumbr).css({"opacity" : "0.5", "font-size" : "14px" });
}).mouseleave(function(){
$('#countdoctor').text(docNumbr).css({"opacity" : "1.0", "font-size" : "25px" });
});
});
I want to avoid resizing of div on mouseenter and on mouseleave.
As you noticed it's because the font-size and the text change. It is not necessarily to just make the font sizes the same. I think your problem will be solved when
countdoctor
have a static height and width. e.g. :