Вот он, вот он профессионал. Объяснил про флаг так четко, что я сам кому хочешь теперь объясню. Если бы можно было апнуть карму 10 раз, апнул бы 11.
Но а если насчет решения, то я их совместил
$(function changeHeader() {
var header = document.getElementById('header');
var scrolled = false;
window.onscroll = function(e) {
if ($(document).scrollTop() > 10) {
if (!scrolled) {
$("#header").animate({ // Меняем Header
lineHeight: "64px",
backgroundColor: "#ffffff"
}, {"duration":100, "queue":false});
$("#header section div.logo span").animate({ // Меняем Logo
color: "#CD0000"
}, {"duration":100, "queue":false});
$("#header section div.sign").animate({ // Меняем Sign Up и Sign In
color: "#999999",
borderColor: "#2787a4"
}, {"duration":100, "queue":false});
scrolled = true;
}
} else {
if (scrolled) {
$("#header").animate({ // Меняем Header
lineHeight: "100px",
backgroundColor: "rgba(255, 255, 255, 0)",
}, {"duration":100, "queue":false});
$("#header section div.logo span").animate({ // Меняем Logo
color: "#ffffff"
}, {"duration":100, "queue":false});
$("#header section div.sign").animate({ // Меняем Sign Up и Sign In
color: "#999999",
borderColor: "#cccccc"
}, {"duration":100, "queue":false});
scrolled = false;
}
}
}
});