javascript - 尝试实现谷歌的快速按钮

标签 javascript dom-events mobile-website

我正在尝试为移动触摸事件实现 Google 的快速按钮,但我似乎被卡住了。我正在尝试设置它以便我可以链接到快速按钮,但我似乎无法正确设置我的库结构。最终发生的事情是,当我尝试在链接上运行 for 循环时,快速按钮会自行重新初始化。

我确信这就是我设置库的方式。有人可以检查一下吗?

http://code.google.com/mobile/articles/fast_buttons.html

    ;(function() {
/*Construct the FastButton with a reference to the element and click handler.*/
this.FastButton = function(element, handler) {
    console.log('fastbutton init');
    this.element = element;
    this.handler = handler;
    console.log(this);
    element.addEventListener('touchstart', this, false);
    element.addEventListener('click', this, false);
};

/*acts as an event dispatcher*/
this.FastButton.prototype.handleEvent = function(event) {
    console.log(event);
    switch (event.type) {
        case 'touchstart': this.onTouchStart(event); break;
        case 'touchmove': this.onTouchMove(event); break;
        case 'touchend': this.onClick(event); break;
        case 'click': this.onClick(event); break;
    }
};

/*Save a reference to the touchstart coordinate and start listening to touchmove and
 touchend events. Calling stopPropagation guarantees that other behaviors don’t get a
 chance to handle the same click event. This is executed at the beginning of touch.*/
this.FastButton.prototype.onTouchStart = function(event) {
    event.stopPropagation();
    this.element.addEventListener('touchend', this, false);
    document.body.addEventListener('touchmove', this, false);
    this.startX = event.touches[0].clientX;
    this.startY = event.touches[0].clientY;
};

/*When /if touchmove event is invoked, check if the user has dragged past the threshold of 10px.*/
this.FastButton.prototype.onTouchMove = function(event) {
    if (Math.abs(event.touches[0].clientX - this.startX) > 10 ||
            Math.abs(event.touches[0].clientY - this.startY) > 10) {
        this.reset(); //if he did, then cancel the touch event
    }
};

/*Invoke the actual click handler and prevent ghost clicks if this was a touchend event.*/
this.FastButton.prototype.onClick = function(event) {
    event.stopPropagation();
    this.reset();
    this.handler(event);
    if (event.type == 'touchend') {
        console.log('touchend');
        //clickbuster.preventGhostClick(this.startX, this.startY);
    }
};

this.FastButton.prototype.reset = function() {
    this.element.removeEventListener('touchend', this, false);
    document.body.removeEventListener('touchmove', this, false);
};

this.clickbuster = function() {
    console.log('init clickbuster');
}
/*Call preventGhostClick to bust all click events that happen within 25px of
 the provided x, y coordinates in the next 2.5s.*/
this.clickbuster.preventGhostClick = function(x, y) {
clickbuster.coordinates.push(x, y);
window.setTimeout(this.clickbuster.pop, 2500);
};

this.clickbuster.pop = function() {
this.clickbuster.coordinates.splice(0, 2);
};
/*If we catch a click event inside the given radius and time threshold then we call
 stopPropagation and preventDefault. Calling preventDefault will stop links
 from being activated.*/
this.clickbuster.onClick = function(event) {
for (var i = 0; i < clickbuster.coordinates.length; i += 2) {
 console.log(this);
    var x = clickbuster.coordinates[i];
    var y = clickbuster.coordinates[i + 1];
    if (Math.abs(event.clientX - x) < 25 && Math.abs(event.clientY - y) < 25) {
        event.stopPropagation();
        event.preventDefault();
    }
}
};

})(this);



document.addEventListener('click', clickbuster.onClick, true);
clickbuster.coordinates = [];

最佳答案

试试用new调用构造函数?

new FastButton(el, function() {});

关于javascript - 尝试实现谷歌的快速按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6300136/

相关文章:

javascript - 在这种情况下它是否使用异步?我试图理解事件循环+ promise

javascript - 使用 Javascript/Prototype 调整 DIV 大小的简单方法

javascript - Angular2 数据表的搜索/过滤组件

javascript - React this.props 在状态事件中未定义?

ios - 无法使 iOS 设备的条件 CSS 正常工作

performance - 什么样的网站最适合谷歌的AMP(Accelerated Mobile Pages)

javascript - 错误: Error: Can't set headers after they are sent

javascript - 为什么这个没有打开。单击我的按钮上的工作

javascript - 触发 JavaScript 中的内置事件?

jquery - 使用 jQuery Mobile 支持的网站使用我自己的主题(样式)设计和图标的正确方法是什么?