Drop down menus on new SCA site

Requirement is to smoothen the dropdown menus in the SCA.On the new SCA site, can the drop down menus be a bit more smoother.The dropdown menus in the website need to be smoother

Solution:

the dropdown menus can be smoother by providing the css propery transition-duration.

For example:

css code:

.firstLevel-accordion-body.collapse.in {
	transition-duration: 3s;
	-moz-transition-duration: 6s;
	-o-transition-duration: 6s;
	-webkit-transition-duration: 6s;
}

Leave a comment

Your email address will not be published. Required fields are marked *