4.7 練習
Last updated
Last updated
<input type="text" class="search" placeholder="搜尋.."><a href="http://tw.yahoo.com" target="_blank" class="card">
<img src="https://picsum.photos/id/774/500/300">
<span class="hint_text">美麗的風景</span>
<div class="other_notes">次要說明次要說明次要說明</div>
</a><div class="fixed_top">這是置頂的區域</div><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>var header_active = function(){
// 取得使用者滑了多少 px
var scroll_top = $(window).scrollTop();
// 將 scroll_top 數值放到 p.-pos 內容
$("p.-pos").html(scroll_top);
if(scroll_top >= 100){
$("div.fixed_top").addClass("-on");
}else{
$("div.fixed_top").removeClass("-on");
}
};
$(function(){
// 第三步:偵測頁面滑動時會觸發
$(window).scroll(function(){
header_active();
});
});