2014年7月6日日曜日

Performance improvement

I wrote what I got to know as my experience.

All widgets

  • Use "vclick"
  • Not use "transitions" as much as possible
  • Move common parts(panels, popups) to out of div(data-role="page").

Popup

  • Remove "ui-overlay-shadow" 

Form

  •  Reduce "select" tags

Reference sites

Change Listview icons size

The size of Listview icons is 16px. But often I wish show bigger size icons. So I wrote some css.

.ui-listview .ui-li-icon {
  position: absolute !important;
  max-height: 24px !important;
  max-width: 24px !important;
  left: 10px !important;
  top: 10px !important;
}

16px


24px