我在使用lobb.js和hammer.js实现触摸事件时遇到问题
我曾尝试以常规方式实现触摸,即在“事件”部分中定义触摸事件。但是它对我没有用。
请在下面找到我的代码
define(['Backbone','underscore','Handlebars','Hammer'],function(Backbone,_,Handlebars,Hammer) {
//getting the type of device in a variable using "userAgent"
window.MOBILE = navigator.userAgent.match(/mobile/i);
var HeadderView = Backbone.View.extend(
{
el: 'body',
touchPrevents : false,
initialize: function()
{
this.el$ = $(this.el);
},
events: function() {//returning different functions based on the device
return MOBILE ?
{
'tap #headcontent': 'handleTap',
} :
{
'click #headcontent':'clickbackbone',
}
},
//declaring the corresponding functions
handleTap: function(){
alert("tap event");
},
clickbackbone:function(){
alert('backbone click');
},
render: function ()
{
//rendering the template and appending it to the page
var that = this;
require(['text!gaming/gameHeadder/headder.html'],function(HeaderTemplate){
var template = Handlebars.compile(HeaderTemplate);
var context = {title: "Tick Tack Toe", imageURL: "images/logo.jpg"}
var htmlTemplate = template(context);
that.el$.html( htmlTemplate);
});
},
});
return new HeadderView();
}
);
有人可以帮我解决我的代码问题吗
最佳答案
这不是Hammer的工作方式。 Backbone对HammerJS一无所知。
如果您确实想在Hammer中使用Backbone风格的事件委托,则可能要签出backbone.hammer项目。
关于javascript - Hammer Js不适用于Backbone.js,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23488850/