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

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

如何單擊具有更多邊界的 svg 線標記?

如何單擊具有更多邊界的 svg 線標記?

慕萊塢森 2023-10-04 15:24:43
我每天都感謝開發(fā)者的回復(fù)。如何單擊具有更多邊界的 svg 線標記?這是我的線路標簽。這是我想要點擊ling標簽的邊界 <body>    <svg height="210" width="500">      <defs>        <filter id="f1" x="0" y="0" width="200%" height="200%">          <feOffset result="offOut" in="SourceGraphic" dx="2" dy="2" />          <feBlend in="SourceGraphic" in2="offOut" mode="normal" />        </filter>      </defs>      <line        x1="0"        y1="0"        x2="200"        y2="200"        style="stroke:rgb(255,0,0);stroke-width:5;box-shadow: 10px 5px 5px red;"      ></line>    </svg>  </body>  <script>    document      .getElementsByTagName("line")[0]      .addEventListener("click", function(e) {        console.log("lineClick", e);      });  </script>如何設(shè)置更多的點擊事件邊界?
查看完整描述

1 回答

?
撒科打諢

TA貢獻1934條經(jīng)驗 獲得超2個贊

在第一條線的頂部添加第二條更寬的不可見線,捕獲其點擊并將其分派到下面的可見線。


  <body>

    <svg height="210" width="500">

      <defs>

        <filter id="f1" x="0" y="0" width="200%" height="200%">

          <feOffset result="offOut" in="SourceGraphic" dx="2" dy="2" />

          <feBlend in="SourceGraphic" in2="offOut" mode="normal" />

        </filter>

      </defs>

      <line

        x1="0"

        y1="0"

        x2="200"

        y2="200"

        style="stroke:rgb(255,0,0);stroke-width:5;box-shadow: 10px 5px 5px red;"

      ></line>

      <line onclick="document

      .getElementsByTagName('line')[0].dispatchEvent(new Event('click'));"

        x1="0"

        y1="0"

        x2="200"

        y2="200"

        style="stroke:none;stroke-width:40;pointer-events:all;cursor:pointer"

      ></line>

      </svg>

  </body>

  <script>

    document

      .getElementsByTagName("line")[0]

      .addEventListener("click", function(e) {

        console.log("lineClick", e);

      });

  </script>


查看完整回答
反對 回復(fù) 2023-10-04
  • 1 回答
  • 0 關(guān)注
  • 124 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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