简体   繁体   中英

Html5,jquery mobile android/iphone application

I am building an application for andriod/Iphone using jquery mobile ,html5

I need to show a graph and below it will be a slider.

I have implemented the slider using 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.

Thanks

please try scencha charts, it is widlely used in mobile websites. scencha examples

You have to know that HTML5 is only supported on modern mobile browsers.

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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