流星中的主题
Themes in meteor
我正在从事一个需要 public 前端(某些部分仅供会员使用)、管理区域和移动应用程序的项目。我想为前端使用 1 bootstrap 主题,为应用程序使用 1 个管理 bootstrap 管理主题和流星离子项目。我怎样才能在 1 个项目中做到这一点? #meteorjs
你可以使用不同的模板,每个模板使用不同的CSS,就像这样。
<template name="admin">
<div class="admin">
<!-- Admin Stuff here -->
</div>
</template>
<template name="ionic">
<div class="ionic">
<!-- Ionic Stuff here -->
</div>
</templates>
<template name="members">
<div class="members">
<!-- Members Stuff here -->
<div>
</templates>
Discover Meteor Spacebar Secrets
Or this Very basic Tutorial About Templates
更新
因此,如果您只想将 CSS 文件上传到手机,请尝试使用此方法。
首先像这样在项目中创建一个文件夹
packages/mobile
mobile
文件夹中的第二个 创建此 package.js
文件
Package.describe({
summary: "CSS just for the mobile",
});
Package.on_use(function (api) {
api.use(['mizzao:bootstrap-3'], ['web.cordova']);
});
Here we are using the mizzao:bootstrap-3 Package
third 在主机上 运行 meteor add mobile
我们仅在移动应用程序上使用 mizzao:bootstrap 3。
注意: 如果你不想使用 mizzao bootstrap 你可以使用
api.addFiles('myCoolCss.ccs', 'web.cordova');
在 package.js
里面,你会使用你想要的 .css
,更多关于 addFiles here
我正在从事一个需要 public 前端(某些部分仅供会员使用)、管理区域和移动应用程序的项目。我想为前端使用 1 bootstrap 主题,为应用程序使用 1 个管理 bootstrap 管理主题和流星离子项目。我怎样才能在 1 个项目中做到这一点? #meteorjs
你可以使用不同的模板,每个模板使用不同的CSS,就像这样。
<template name="admin">
<div class="admin">
<!-- Admin Stuff here -->
</div>
</template>
<template name="ionic">
<div class="ionic">
<!-- Ionic Stuff here -->
</div>
</templates>
<template name="members">
<div class="members">
<!-- Members Stuff here -->
<div>
</templates>
Discover Meteor Spacebar Secrets
Or this Very basic Tutorial About Templates
更新
因此,如果您只想将 CSS 文件上传到手机,请尝试使用此方法。
首先像这样在项目中创建一个文件夹
packages/mobile
mobile
文件夹中的第二个 创建此 package.js
文件
Package.describe({
summary: "CSS just for the mobile",
});
Package.on_use(function (api) {
api.use(['mizzao:bootstrap-3'], ['web.cordova']);
});
Here we are using the mizzao:bootstrap-3 Package
third 在主机上 运行 meteor add mobile
我们仅在移动应用程序上使用 mizzao:bootstrap 3。
注意: 如果你不想使用 mizzao bootstrap 你可以使用
api.addFiles('myCoolCss.ccs', 'web.cordova');
在 package.js
里面,你会使用你想要的 .css
,更多关于 addFiles here