jquery mobile data-theme not working

后端 未结 1 625
后悔当初
后悔当初 2020-12-16 21:40

I have a simple log in page and I\'m trying to apply theme \"b\" to it, but it doesn\'t work. The page looks dark and not the way theme b should look like. Any idea?

相关标签:
1条回答
  • 2020-12-16 22:18

    Update

    The classic theme should be upgraded to work properly with jQuery Mobile 1.4.x

    Upgrade guide


    Unlike old versions of jQuery Mobile, the latest version 1.4 has only two themes/swatches a and b. The latter is dark/black theme.

    1. You can either create your own themes using ThemeRoller.

    2. Use classic style sheet offered by jQuery Mobile, along with default style sheet.

      <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.css" />
      <link rel="stylesheet" href="http://demos.jquerymobile.com/1.4.0/theme-classic/theme-classic.css" />
      

    Demo

    0 讨论(0)
提交回复
热议问题