當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript ArcGIS Slider.thumbCreatedFunction用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

AMD: require(["esri/widgets/Slider"], (Slider) => { /* code goes here */ });

ESM: import Slider from "@arcgis/core/widgets/Slider";

類: esri/widgets/Slider

繼承: Slider > Widget > Accessor

自從:用於 JavaScript 4.12 的 ArcGIS API

用法說明

Slider.thumbCreatedFunction函數(或屬性)的定義如下:

thumbCreatedFunction ThumbCreatedFunction


每次在滑塊上創建拇指時執行的函數。這可用於為每個拇指添加自定義樣式或將事件偵聽器鉤子到特定拇指。

例子:

slider.thumbCreatedFunction = function(index, value, thumbElement) {
  thumbElement.classList.add("change-color");
  thumbElement.addEventListener("focus", function() {
    // add custom behavior here...tooltips, fire other actions, etc.
  });
});

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 Slider.thumbCreatedFunction。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。