0
我在how to create an animated sticky header, with CSS3 and jQuery上實現了本文中的摺疊粘貼標題。雙向CSS轉換
頭當前動畫與下面的行的所有CSS的變化:
transition: all 0.4s ease;
當粘頭施加下面的CSS特性改變:
font-size: 72px; /* --> 24px; */
line-height: 108px; /* --> 48px; */
height: 108px; /* --> 48px; */
background: #335C7D; /* --> #efc47D; */
text-align: center; /* --> left; */
padding-left: auto; /* --> 20px; */
所以過渡所有應該優雅之間移動每個屬性的現有價值和新價值。
但是,我注意到,當我向下滾動時,文字很好地向左移動。但是,當我向上滾動時,文本似乎從中間跳出,而不是在丟失text-align:left
屬性時向右移動。
$(window).scroll(function() {
var belowTop = $(this).scrollTop() > 30;
$('header').toggleClass('sticky', belowTop);
});
/*reset */
* {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
header {
position: fixed;
width: 100%;
font-family: 'PT Sans', sans-serif;
transition: all 0.4s ease;
color: #fff;
font-size: 72px;
line-height: 108px;
height: 108px;
background: #335C7D;
text-align: center;
}
header.sticky {
font-size: 24px;
line-height: 48px;
height: 48px;
background: #efc47D;
text-align: left;
padding-left: 20px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<header><h1>Sticky Header</h1></header>
<img src="http://i.stack.imgur.com/8pezV.jpg" alt="Big Image" />