jQuery Growl 项目教程
jquery-growlGrowler is a jQuery plugin designed to provide informative messages in the browser.项目地址:https://gitcode.com/gh_mirrors/jq/jquery-growl
1. 项目的目录结构及介绍
jquery-growl/
├── babelrc
├── gitignore
├── travis.yml
├── Cakefile
├── Gemfile
├── Gemfile.lock
├── LICENSE
├── README.md
├── Rakefile
├── bower.json
├── growl-jquery.json
├── index.haml
├── index.html
├── index.slim
├── package.json
├── yarn.lock
├── bourbon/
│ └── images/
├── images/
├── javascripts/
│ └── jquery.growl.js
├── neat/
├── packages/
├── spec/
│ └── javascripts/
│ └── support/
├── stylesheets/
│ └── jquery.growl.css
目录结构介绍
babelrc
: Babel 配置文件。gitignore
: Git 忽略文件配置。travis.yml
: Travis CI 配置文件。Cakefile
: Cakefile 配置文件。Gemfile
和Gemfile.lock
: Ruby 依赖管理文件。LICENSE
: 项目许可证。README.md
: 项目说明文档。Rakefile
: Rake 任务配置文件。bower.json
: Bower 包管理配置文件。growl-jquery.json
: 项目元数据文件。index.haml
,index.html
,index.slim
: 项目首页文件。package.json
: npm 包管理配置文件。yarn.lock
: Yarn 包管理锁定文件。bourbon/
: Bourbon 样式库目录。images/
: 图片资源目录。javascripts/
: JavaScript 文件目录,包含jquery.growl.js
。neat/
: Neat 样式库目录。packages/
: 包目录。spec/
: 测试目录。stylesheets/
: 样式表目录,包含jquery.growl.css
。
2. 项目的启动文件介绍
项目的启动文件主要是 javascripts/jquery.growl.js
和 stylesheets/jquery.growl.css
。这两个文件是 jQuery Growl 插件的核心文件,分别负责插件的 JavaScript 功能和样式。
javascripts/jquery.growl.js
这是 jQuery Growl 插件的主要 JavaScript 文件,包含了插件的所有功能逻辑。
stylesheets/jquery.growl.css
这是 jQuery Growl 插件的主要样式文件,定义了通知的外观和样式。
3. 项目的配置文件介绍
package.json
这是 npm 包管理的主要配置文件,包含了项目的元数据、依赖项等信息。
{
"name": "jquery-growl",
"version": "2.0.4",
"description": "Growler is a jQuery plugin designed to provide informative messages in the browser.",
"main": "javascripts/jquery.growl.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksylvest/jquery-growl.git"
},
"author": "Kevin Sylvestre",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksylvest/jquery-growl/issues"
},
"homepage": "https://github.com/ksylvest/jquery-growl#readme",
"dependencies": {
"jquery": "^3.2.1"
}
}
bower.json
这是 Bower 包管理的配置文件,用于前端包管理。
{
"name": "jquery-growl",
"version": "2.0.4",
"description": "Growler is a jQuery plugin designed to provide informative messages in the browser.",
"main": [
"javascripts/jquery.growl.js",
"stylesheets/jquery.growl.css"
],
"keywords": [
"growl",
"notification",
"alert",
"notice"
],
"authors":
jquery-growlGrowler is a jQuery plugin designed to provide informative messages in the browser.项目地址:https://gitcode.com/gh_mirrors/jq/jquery-growl