大纲:
我在网站上使用两个j.Query插件。我需要左右滑动添加作为其中一个的功能。我已成功使用j.Query Mobile下面的最新版本:
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-
1.4.5.min.js"></script>
只有在隔离的代码中,所有内容都可以在其他插件之外正常工作。
问题:
不幸的是,另一个插件不适用于任何高于j.Query-1.6.1的j.Query版本,当我包含上面提到的更高版本时,另一个插件停止正常工作。
我找不到与1.6.1兼容的j.Query Mobile,因此两个插件可以在同一版本上运行。是否有可用的兼容j.Query Mobile版本,以便我可以像这样添加我的滑动:
function swiping(){
$(function(){
var anim = $('div#carousel');
$(anim).on( "swipeleft", swiper );
$(anim).on( "swiperight", swiper1 );
function swiper(e){
e.stopPropagation();
e.preventDefault();
$('div#carousel').roundabout('animateToNextChild', showCaption);
}
function swiper1(e){
e.stopPropagation();
e.preventDefault();
$('div#carousel').roundabout('animateToPreviousChild', showCaption);
}
});
}
如果没有,我如何为移动设备添加滑动(左侧和写入),使两个插件可以在同一个j.Query 1.6.1上运行。两者都运行正常,但没有滑动,我只需要添加其中一个。
答案 0 :(得分:0)
为了将所有内容保存在同一版本的j.Query中并将swipe for mobile添加到一个插件中,我不得不改变我编写函数的方式,我按照下面的示例添加了旧版本的j.Query移动:
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.1.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
<style type='text/css'>
.add-border {
border-style: solid;
border-width: 1px;
width: 100%;
text-align: center;
}
</style>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){
function bindEvent(element) {
element.bind('tap taphold swipe swiperight swipeleft', function(event, ui) {
alert('Event: '+event.type);
});
}
bindEvent($('#display-event'));
});//]]>
</script>
</head>
<body>
<div data-role="page" id="home">
<div data-role="content">
<div id="display-event" class="add-border">
<p>Tap, TapHold (for 1 second), Swipe, SwipeRight or SwipeLeft</p>
</div>
</div>
</div>
</body>
</html>