0

我从 JQuery Mobile Themeroller 网站下载了包含自定义主题的 zip 文件。

压缩包包含:


主题目录(以下是此目录中的内容)

  • 图片目录
    Example.css
    Example.min.css

Index.html(我认为只是说明)


我不知道在哪里放置 css 文件和图像目录以使主题工作。

我尝试将它们放在 app/assets/stylesheets 和 public/stylesheets 中,但我的页面没有更改以匹配主题。

也许我没有正确引用页面。

<head>
      <meta name="viewport" content="width=device-width, initial-scale=1">

      <link rel="stylesheet" href="themes/Example.css" />
      <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile.structure-1.2.0.min.css" />
      <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
      <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
4

1 回答 1

0

资产组织

所以你需要把它放在里面vendor/assets并包含在里面app/assets/stylesheets/application.css

*= Example.min

或者

*= Example
于 2012-11-13T07:33:39.233 回答