๐Ÿ“ท๏ธ Gif ScreenShot


I've tried the CSS way before, But It will make the drop menu "crazyy".
And I made this by javascript. It won't make the drop menu works incorrectly.

โ‰๏ธ How to use


Add these code to custom footer.

<script>
/* ๅฎž็Žฐไธป้ข˜ๅธ–hover็‰นๆ•ˆๅนถไธ”ไธๅฝฑๅ“ไธ‹ๆ‹‰่œๅ• */
$(function() {
	$("body").delegate(".Dropdown-toggle", 'click',
	function() {
		let menuState = $(".open .Dropdown-menu").css("display");
		if (menuState == 'none' || menuState == undefined) {
			$('.DiscussionListItem').css({
				'transition': ' All 0.2s ease-in-out'
			});
			$('.DiscussionListItem').css({
				'transform': ' none'
			});
		}
	});
	$("body").delegate(".DiscussionListItem", 'mouseover',
	function() {
		let menuState = $(".open .Dropdown-menu").css("display");
		if (menuState == 'none' || menuState == undefined) {
			$(this).css({
				'transform': ' scale(1.05)'
			});
			$(this).css({
				'transition': ' All 0.2s ease-in-out'
			});
		} else {
			$(this).css({
				'transition': ' All 0.2s ease-in-out'
			});
			$(this).css({
				'transform': ' none'
			});
		}
	});
	$("body").delegate(".DiscussionListItem", 'mouseout',
	function() {
		let menuState = $(".open .Dropdown-menu").css("display");
		if (menuState == 'none' || menuState == undefined) {
			$(this).css({
				'transition': ' All 0.2s ease-in-out'
			});
			$(this).css({
				'transform': ' none'
			});
		} else {
			$(this).css({
				'transform': ' none'
			});
		}
	});
});
</script>
    4 months later

    djemyjenab You can make it with own custom css without javascript code

    .DiscussionListItem-content:hover {
        transition: All 0.2s ease-in-out;
        transform: scale(1.05);
    }

      datlechin You can make it with own custom css without javascript code

      is this posible for left menu also? ๐Ÿ™‚
      THX

      2 years later

      ๐Ÿ˜Ž๐Ÿ‘ This is cool af!!
      Thanks for sharing.

      I'm currently attempting to add a background animation effect to this code.
      It's sort of working, but not quite right.
      See live demo here