I want to add class (stycky-border) to element in my web site. Here is my jQuery code
`
$(document).ready(function() {
$(window).scroll(function() {
if ($(document).scrollTop() > 20) {
$('#masthead').addClass('sticky-border');
}
else {
$('#masthead').removeClass('sticky-border');
}
});
});
`
How can i make this action slowly, with transition. How can I use css property "transition: 10s" with jQuery?
Thanks!