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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

僅當(dāng)鼠標(biāo)懸停時加載 iframe

僅當(dāng)鼠標(biāo)懸停時加載 iframe

慕森王 2024-01-03 15:50:07
我希望 iframe 僅在鼠標(biāo)懸停在其上時加載。我只希望它在鼠標(biāo)懸停時加載,因為我有很多這樣的網(wǎng)站,而且網(wǎng)站的加載速度非常糟糕。有任何想法嗎?我已經(jīng)嘗試過如果周圍有一個隱藏的 div,但我不喜歡這個選項$(".text").mouseover(function() {    $(this).children(".test").show();}).mouseout(function() {    $(this).children(".test").hide();});.text {    color: #069;    cursor: pointer;    text-decoration: none;}.test {    display: none;    position: absolute;    border: 1px solid #000;    width: 400px;    height: 400px;}<span style="font-size:120%;"><b><a class="text"> &#128065;  <iframe class="test" src="https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png"></iframe></a></b></span>                        <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
查看完整描述

1 回答

?
慕的地6264312

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

不要設(shè)置srciframe 的 。僅當(dāng)用戶第一次懸停時設(shè)置它。


在下面的代碼片段中,您可以看到 iframe 內(nèi)的頁面最初并未加載,直到您將鼠標(biāo)懸停在眼睛上。


我特意發(fā)表了評論display: none;,以便您可以觀察到該頁面未加載。


$(".text").mouseover(function() {

    var src = $(this).children(".test").attr('src');

    if(!src){

      src = $(this).children(".test").attr('data-src');

      $(this).children(".test").attr('src', src);

    }

    $(this).children(".test").show();

}).mouseout(function() {

    $(this).children(".test").hide();

});

.text {

    color: #069;

    cursor: pointer;

    text-decoration: none;

}


.test {

    //display: none;

    position: absolute;

    border: 1px solid #000;

    width: 400px;

    height: 400px;

}

<span style="font-size:120%;"><b><a class="text"> &#128065;

 

 <iframe class="test" data-src="https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png"></iframe>

</a></b></span>

            

            

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>


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

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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