在Android应用程序中,我想要触摸或鼠标滑动,滑动页脚中存在的数据。在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部分?
2条答案
按热度按时间6rqinv9w1#
这就是你的答案。
在HTML 5中:
在Jquery中:
对吗?
g9icjywg2#
最后我得到了这些问题的答案
在HTML5中:-
在jquery中:-