第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

用戶滾動(dòng)頁面時(shí)為文本添加下劃線 - JQUERY

用戶滾動(dòng)頁面時(shí)為文本添加下劃線 - JQUERY

jeck貓 2024-01-03 15:59:58
我一直在尋找一種在用戶向下滾動(dòng)頁面時(shí)為文本添加下劃線的方法。我希望僅當(dāng)用戶向下滾動(dòng)時(shí)才顯示下劃線。我嘗試過使用 animate.css 和其他插件但無濟(jì)于事。有任何想法嗎?謝謝你!
查看完整描述

2 回答

?
慕尼黑的夜晚無繁華

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超6個(gè)贊

嘗試這個(gè)


<!DOCTYPE html>

<html>

<head>

<style>

p{

margin-top : 150px;

}

</style>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

  $(window).on('scroll',function(){

  var a = $(window).scrollTop();

  //alert(a);

  if( a > 50) {

    $("p").css("textDecoration", "underline");

    }

    else {

       $("p").css("textDecoration", "none");

    }


  });

});

</script>

</head>

<body>

<div>

<p>If you scroll, I will underline myself.</p>

<p>If you scroll, I will underline myself.</p>

<p>If you scroll, I will underline myself.</p>

<p>If you scroll, I will underline myself.</p>

</div>


</body>

</html>

您也可以在這里嘗試示例。



查看完整回答
反對(duì) 回復(fù) 2024-01-03
?
守著一只汪

TA貢獻(xiàn)1872條經(jīng)驗(yàn) 獲得超4個(gè)贊

這可能會(huì)解決您的問題:


$(document).on("scroll", function(){

    var topPX = $(window).scrollTop(); //how many pixels the user scrolled

    if(topPX > 100){

    //underlines the text once the user scrolls past 100px

        $('.text').css('text-decoration','underline');

    }

    if(topPX < 100){

    //reverts it back to normal if the user came back to to the "below 100px" position

        $('.text').css('text-decoration','none');

    }

});


查看完整回答
反對(duì) 回復(fù) 2024-01-03
  • 2 回答
  • 0 關(guān)注
  • 181 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)