triceam / app-UI

app-UI is a collection of user interface components that may be helpful to web and mobile developers for creating interactive applications using HTML and JavaScript, especially those targeting mobile devices. app-UI is a continual work in progress - it was born out of the necessity to have rich & native-feeling interfaces in HTML/JS experiences, and it works great with PhoneGap applications (http://www.phonegap.com). app-UI can easily be styled/customized using CSS.
http://triceam.github.com/app-UI/
Other
1.27k stars 239 forks source link

Fixed toolbar/tabbar (request) #17

Open wimpie3 opened 12 years ago

wimpie3 commented 12 years ago

A toolbar / tabbar that stays fixed on the bottom of the screen would be a nice addition!

sebafra commented 10 years ago

Yes. It would be great. I´m working on it

sebafra commented 10 years ago

In viewnavigator.js line 29:

this.rootElement = $('<div class="viewNavigator_root"></div>');
this.footer = $('<div class="FOOTER"></div>');
this.header = $('<div class="viewNavigator_header"></div>');
this.content = $('<div class="viewNavigator_content" id="contentRoot"></div>');
this.rootElement.append( this.header );
this.rootElement.append( this.content );
this.rootElement.append( this.footer );