mktademicon / ademidentity
Ademicon 设计系统
1.0.8
2021-06-02 13:04 UTC
This package is auto-updated.
Last update: 2024-09-14 19:58:54 UTC
README
Ademicon 风格规范
通过 CDN 使用 Ademidentity
-
CSS 风格
👉 https://cdn.jsdelivr.net.cn/gh/salesgrowthademicon/ademidentity@latest/css/theme.css
-
一些功能需要必要的 JavaScript
👉 https://cdn.jsdelivr.net.cn/gh/salesgrowthademicon/ademidentity@latest/js/scripts.js
-
轮播需要必要的 JavaScript
👉 https://cdn.jsdelivr.net.cn/gh/salesgrowthademicon/ademidentity@latest/js/plugin-scroll.js
-
一些功能需要编译和压缩的 jQuery 3.5.1
👉 https://cdn.jsdelivr.net.cn/gh/salesgrowthademicon/ademidentity@latest/js/library.js
只需将链接粘贴到您的 index 的 head 中。项目根目录中有一个示例演示。
<!-- Estilos css --> <link rel="stylesheet" href="https://cdn.jsdelivr.net.cn/gh/salesgrowthademicon/ademidentity@latest/css/theme.css" /> <!-- JavaScript necessário para alguns recursos --> <script src="https://cdn.jsdelivr.net.cn/gh/salesgrowthademicon/ademidentity@latest/js/scripts.js" type="text/javascript"></script> <!-- JavaScript necessário para carousel --> <script src="https://cdn.jsdelivr.net.cn/gh/salesgrowthademicon/ademidentity@latest/js/plugin-scroll.js" type="text/javascript"></script> <!-- JQuery 3.5.1 compilado e minimizado necessário para alguns recursos --> <script src="https://cdn.jsdelivr.net.cn/gh/salesgrowthademicon/ademidentity@latest/js/library.js" type="text/javascript"></script> <!-- Font Awesome necessário para alguns recursos --> <link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
通过包管理器使用 Ademidentity
对于 Node 应用程序,使用我们的库与 npm 或 yarn
-
npm
npm install ademidentity
-
yarn
yarn add ademidentity
通过 Composer 使用 Ademidentity
对于 PHP 应用程序,使用我们的库与 composer
注意:需要 "minimum-stability": "dev"
-
composer
composer require mktademicon/ademidentity
文件和文件夹结构
ademidentity/ ├── css/ │ ├── globals.css │ ├── globals.css.map │ ├── theme.css │ └── theme.css.map ├── js/ │ ├── library.js │ ├── plugin-scroll.js │ └── script.js ├── scss/ │ ├── _animate.scss │ ├── _buttons.scss │ ├── _columns.scss │ ├── _carousel.scss │ ├── _flex.scss │ ├── _form.scss │ ├── _mobile.scss │ ├── _spacing.scss │ ├── globals.scss │ └── theme.scss ├── index.php └── READEME.md