简体   繁体   English

HTML5,jQuery Mobile Android / iPhone应用程序

[英]Html5,jquery mobile android/iphone application

I am building an application for andriod/Iphone using jquery mobile ,html5 我正在使用jquery mobile,html5为andriod / Iphone构建应用程序

I need to show a graph and below it will be a slider. 我需要显示一个图,在它下面将是一个滑块。

I have implemented the slider using jquery mobile. 我已经使用jquery mobile实现了滑块。

But I need to know how can I show graph , the graph needs to change as I slide the slider. 但是我需要知道如何显示图表,在滑动滑块时需要更改图表。

Does the simple graphs in javascript like "Rgraph" will work in offline mobile application I am building or there is some special graph library in jquery for mobile application. javascript中的简单图形(例如“ Rgraph”)是否可以在我正在构建的脱机移动应用程序中使用,或者在jquery中有一些用于移动应用程序的特殊图形库。

Thanks 谢谢

please try scencha charts, it is widlely used in mobile websites. 请尝试使用scencha图表,该图表已在移动网站中广泛使用。 scencha examples 场景示例

You have to know that HTML5 is only supported on modern mobile browsers. 您必须知道HTML5仅在现代移动浏览器中受支持。

To detect changes on your slider : 要检测滑块上的更改:

$( ".selector" ).bind( "change", function(event, ui) {
  // Do Some Chart Processing ...
});

For more information about mobile browsers support for HTML5, please refer to this article . 有关移动浏览器对HTML5的支持的更多信息,请参阅本文

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM