0

在 Html5 中:- 在页脚中,它将存储动态 cuming 的数据,页脚部分应该通过触摸而不是整个窗口移动,只有页脚应该随着数据从左到右移动

<div data-role="page" id="page1">
         <div data-role="footer" data-position="fixed" id="footer">
              <div class="menu" id="menu_button1" id="scroll_menu" onmouseover='this.style["overflowX"]="scroll";'  onmouseout='this.style["overflowX"]="visible";'></div>
         </div> 
</div>

在 Jquery 中:- 我正在使用 Ajax 调用来动态获取数据,并将该数据存储在 Htm5 的页脚部分中,我想使用触摸事件如何使用请帮助我

function callMenuConnection() {  
        $.support.cors = true;
           $.ajax({
                type: "POST",
                url: "one.html",
                contentType: "text/xml",
                dataType: "xml",
                data: "",
                cache:false,
                processData:false,
                crossDomain:true,
                success: processSuccess,
                error: processError
            }); 
      }

      function processSuccess(data) {
             $(data).find("category").each(function () {     
             var id = $(this).find('id').text();
             var title = $(this).find('title').text();
             var scripts = "<a href='#' data-role='button' data-theme='b' data-inline='true'>"+title+"</a>"                
            $("#menu_button1").append(scripts).trigger('create'); 
        });
      }

         function processError(data)
           {
               alert("error");
           }
    $(document).unbind('pageinit').bind('pageinit', function () {
         callMenuConnection(); 
     });
4

2 回答 2

2

最后我得到了这些的答案

在 HTML5 中:-

 <div data-role="page" data-theme="b" id="jqm-home">    
      <div data-role="footer" data-position="fixed" data-theme="c">        
           <div  class="categories" id="cat">                
              <ul id="cat_list" class="cat_list_class"></ul>               
           </div>
      </div>    
</div>

在jQuery中: -

 var step = 1;
 var current = 0;
 var maximum = 0;
 var visible = 2;
 var speed = 500;
 var liSize = 120;
 var height = 60;    
 var ulSize = liSize * maximum;
 var divSize = liSize * visible;

 $(document).unbind('pageinit').bind('pageinit', function () {    
      callMenuConnection(); 
       $('.categories').css("width", "auto").css("height", height+"px").css("visibility", "visible").css("overflow", "hidden").css("position", "relative");
       $(".categories ul a").css("list-style","none").css("display","inline");
       $(".categories ul").css("width", ulSize+"px").css("left", -(current * liSize)).css("position", "absolute").css("white-space","nowrap").css("margin","0px").css("padding","5px");      
  });

 $(document).unbind('click').bind('click', function () {
        scroll();
 });
   function callMenuConnection() {  
       $.support.cors = true;
       $.ajax({
            type: "GET",
            url: "one.html",
            contentType: "text/xml",
            dataType: "xml",
            data: "",
            cache:false,
            processData:false,
            crossDomain:true,
            success: processSuccess,
            error: processError
        }); 
  }
      var scripts ="";     
  function processSuccess(data) {
         $(data).find("category").each(function () {     
         var id = $(this).find('id').text();
         var title = $(this).find('title').text();
          scripts = scripts+'<a  class="ids_cat" data-role="button" data-transition="slide"  data-inline="true" >' +title+ '</a>';
        });
        $('#cat_list').append(scripts);
        $('#cat_list').trigger('create');
         maximum = $(".categories ul a").size();
  }

     function processError(data)
       {
           alert("error");
       }

 function scroll(){ 
 $(".categories").swipeleft(function(event){
  if(current + step < 0 || current + step > maximum - visible) {return; }
else {
    current = current + step;
    $('.categories ul').animate({left: -(liSize * current)}, speed, null);
}
return false;
 });

$(".categories").swiperight(function(event){
 if(current - step < 0 || current - step > maximum - visible) {return; }
    else {
       current = current - step;
      $('.categories ul').animate({left: -(liSize * current)}, speed, null);
   }
   return false;
  });         
}
于 2013-08-08T04:06:42.557 回答
0

请在页脚选择器上使用滑动事件。就像是 :

// Temp Id Card 后翻页滑动事件 $("#FooterId").on('swipe', function (e) { // 在这里不断更改某些 div 中的数据,它会产生页脚正在更改的错觉... });

于 2013-07-22T08:34:55.273 回答