在android应用程序中,我想要触摸或鼠标滑动来滑动footer.in phonegap中存在的数据我正在制作android应用程序请帮助我如何为这些滑动事件编写jquery脚本和css3
在jQuery中: -
function get_Menu_List() {
window.my_cat_index=0;
$(location).attr('href', '#menu_list');
$.support.cors = true;
$.ajax({
type: "GET",
url: "xyz.html",
contentType: "text/xml",
dataType: "xml",
data: "",
crossDomain:true,
success: function(xml) {
$(xml).find('category').each(function(){
var menu_cat_id = $(this).find('id').text();
var menu_cat_title = $(this).find('title').text();
my_cat_index++;
$('#scroller').append('<li class="selected" id="envy_cat_ID'+my_cat_index+'"><a href="#" data-role="button" data-theme="b" data-inline="true"><span>'+menu_cat_title+'</span></a></li>');
});
在 html5 中:-
<div data-role="page" id="menu_list">
<div data-role="footer" data-position="fixed" id="footer_ids" data-theme="c">
<div class="titles" id="wrapper" onmousedown="startReverseSlider(event)" ontouchstart="startReverseSlider(event)">
<ul id="scroller" ></ul>
</div>
<div class="sliderOuterDiv" >
<div class="sliderThumb" onmousedown="start(event)" ontouchstart="start(event)" style="width: 1263.3445783132531px;"></div>
</div>
</div>
请告诉我如何编写它的脚本部分和 css 部分请帮助我
预先感谢