首次点击Azle

时间:2018-05-21 15:12:54

标签: azle

我有按钮,可以像这样触发事件

add_button('my_sections', 2, {
    "this_class" : "click_button",
    "text" : "CLICK ME"
    })

add_event('click_button', 1, {
    "type" : "click",
    "function" : "my_function()"
    })

function my_function() {
    alert('hello')
    }

我怎样才能使这个事件只触发一次

1 个答案:

答案 0 :(得分:0)

只需将" pointer-events:none" 添加到被调用的函数中。这会禁用用户与元素的交互。您还可以将不透明度设置为0.5,以向用户显示已禁用按钮。

function my_function() {

    alert('hello')

    style_button('click_button', 1, {
        "pointer-events" : "none", 
        "opacity" : 0.5
        })

     }

enter image description here