167 |
168 |
169 |
170 |
171 |
--------------------------------------------------------------------------------
/html/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) HTML5 Boilerplate
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of
4 | this software and associated documentation files (the "Software"), to deal in
5 | the Software without restriction, including without limitation the rights to
6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7 | of the Software, and to permit persons to whom the Software is furnished to do
8 | so, subject to the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be included in all
11 | copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 | SOFTWARE.
20 |
--------------------------------------------------------------------------------
/html/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/html/doc/TOC.md:
--------------------------------------------------------------------------------
1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/)
2 |
3 | ## Getting started
4 |
5 | * [Usage](usage.md) — Overview of the project contents.
6 | * [FAQ](faq.md) — Frequently asked questions along with their answers.
7 |
8 | ## HTML5 Boilerplate core
9 |
10 | * [HTML](html.md) — Guide to the default HTML.
11 | * [CSS](css.md) — Guide to the default CSS.
12 | * [JavaScript](js.md) — Guide to the default JavaScript.
13 | * [Everything else](misc.md).
14 |
15 | ## Development
16 |
17 | * [Extending and customizing HTML5 Boilerplate](extend.md) — Going further
18 | with the boilerplate.
19 |
20 | ## Related projects
21 |
22 | The [H5BP organization](https://github.com/h5bp) maintains several projects
23 | that complement HTML5 Boilerplate, projects that can help you improve different
24 | aspects of your website/web app (e.g.: the performance, security, etc.).
25 |
26 | * [Server Configs](https://github.com/h5bp/server-configs) — Fast and
27 | smart configurations for web servers such as Apache and Nginx.
28 | * [Apache](https://github.com/h5bp/server-configs-apache)
29 | * [Google App Engine (GAE)](https://github.com/h5bp/server-configs-gae)
30 | * [Internet Information Services (IIS)](https://github.com/h5bp/server-configs-iis)
31 | * [lighttpd](https://github.com/h5bp/server-configs-lighttpd)
32 | * [Nginx](https://github.com/h5bp/server-configs-nginx)
33 | * [Node.js](https://github.com/h5bp/server-configs-node)
34 | * [Front-end Developer Interview Questions](https://github.com/h5bp/Front-end-Developer-Interview-Questions)
35 |
--------------------------------------------------------------------------------
/html/doc/css.md:
--------------------------------------------------------------------------------
1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation
2 | table of contents](TOC.md)
3 |
4 | # The CSS
5 |
6 | HTML5 Boilerplate's CSS includes:
7 |
8 | * [Normalize.css](#normalizecss)
9 | * [main.css](#maincss)
10 |
11 | This starting CSS does not rely on the presence of
12 | [conditional class names](https://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/),
13 | [conditional style sheets](https://css-tricks.com/how-to-create-an-ie-only-stylesheet/),
14 | or [Modernizr](https://modernizr.com/), and it is ready to use no matter what
15 | your development preferences happen to be.
16 |
17 |
18 | ## Normalize.css
19 |
20 | In order to make browsers render all elements more consistently and in line
21 | with modern standards, we include
22 | [Normalize.css](https://necolas.github.io/normalize.css/) — a modern, HTML5-ready
23 | alternative to CSS resets.
24 |
25 | As opposed to CSS resets, Normalize.css:
26 |
27 | * targets only the styles that need normalizing
28 | * preserves useful browser defaults rather than erasing them
29 | * corrects bugs and common browser inconsistencies
30 | * improves usability with subtle improvements
31 | * doesn't clutter the debugging tools
32 | * has better documentation
33 |
34 | For more information about Normalize.css, please refer to its [project
35 | page](https://necolas.github.com/normalize.css/), as well as this
36 | [blog post](http://nicolasgallagher.com/about-normalize-css/).
37 |
38 |
39 | ## main.css
40 |
41 | Several base styles are included that build upon `Normalize.css`. These
42 | styles:
43 |
44 | * provide basic typography settings that improve text readability
45 | * protect against unwanted `text-shadow` during text highlighting
46 | * tweak the default alignment of some elements (e.g.: `img`, `video`,
47 | `fieldset`, `textarea`)
48 | * style the prompt that is displayed to users using an outdated browser
49 | * and more...
50 |
51 | These styles are included in [main.css](https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css). See the [main.css](https://github.com/h5bp/main.css) project [documentation](https://github.com/h5bp/main.css/blob/master/README.md#features) for a full discussion of these styles.
52 |
--------------------------------------------------------------------------------
/html/doc/faq.md:
--------------------------------------------------------------------------------
1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation
2 | table of contents](TOC.md)
3 |
4 | # Frequently asked questions
5 |
6 | * [Why is the Google Analytics code at the bottom? Google recommends it be
7 | placed in the ``.](#why-is-the-google-analytics-code-at-the-bottom-google-recommends-it-be-placed-in-the-head)
8 | * [How can I integrate Bootstrap with HTML5
9 | Boilerplate?](#how-can-i-integrate-bootstrap-with-html5-boilerplate)
10 | * [Do I need to upgrade my site each time a new version of HTML5 Boilerplate is
11 | released?](#do-i-need-to-upgrade-my-site-each-time-a-new-version-of-html5-boilerplate-is-released)
12 | * [Where can I get help with support
13 | questions?](#where-can-i-get-help-with-support-questions)
14 |
15 | ---
16 |
17 | ### Why is the Google Analytics code at the bottom? Google recommends it be placed in the ``.
18 |
19 | The main advantage of placing it in the `` is that you will track the
20 | user's `pageview` even if they leave the page before it has been fully loaded.
21 |
22 | Here's a handy quote from [Mathias Bynens](https://mathiasbynens.be/notes/async-analytics-snippet#comment-50) about our placement choice.
23 | >I should point out that it’s Google — not me — recommending to place this
24 | script before all other scripts in the document. The only real advantage is to
25 | catch a pageView call if your page fails to load completely (for example, if
26 | the user aborts loading, or quickly closes the page, etc.). Personally, I
27 | wouldn’t count that as a page view, so I actually prefer to place this script
28 | at the bottom, after all other scripts. This keeps all the scripts together and
29 | reinforces that scripts at the bottom are the right move. (Usually I
30 | concatenate and minify all my scripts into one .js file — the GA snippet being
31 | the suffix.)
32 |
33 | ### Do I need to upgrade my site each time a new version of HTML5 Boilerplate is released?
34 |
35 | No, just as you don't normally replace the foundation of a house once it
36 | was built. However, there is nothing stopping you from trying to work in the
37 | latest changes, but you'll have to assess the costs/benefits of doing so.
38 |
39 | ### Where can I get help with support questions?
40 |
41 | Please ask for help on
42 | [StackOverflow](https://stackoverflow.com/questions/tagged/html5boilerplate).
43 |
--------------------------------------------------------------------------------
/html/doc/js.md:
--------------------------------------------------------------------------------
1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation
2 | table of contents](TOC.md)
3 |
4 | # The JavaScript
5 |
6 | Information about the default JavaScript included in the project.
7 |
8 | ## main.js
9 |
10 | This file can be used to contain or reference your site/app JavaScript code.
11 | If you're working on something more advanced you might replace this file
12 | entirely. That's cool.
13 |
14 | ## plugins.js
15 |
16 | This file can be used to contain all your plugins, such as jQuery plugins and
17 | other 3rd party scripts for a simple site.
18 |
19 | One approach is to put jQuery plugins inside of a `(function($){ ...
20 | })(jQuery);` closure to make sure they're in the jQuery namespace safety
21 | blanket. Read more about [jQuery plugin
22 | authoring](https://learn.jquery.com/plugins/#Getting_Started).
23 |
24 | By default the `plugins.js` file contains a small script to avoid `console`
25 | errors in browsers that lack a `console`. The script will make sure that, if
26 | a console method isn't available, that method will have the value of empty
27 | function, thus, preventing the browser from throwing an error.
28 |
29 | ## vendor
30 |
31 | This directory can be used to contain all 3rd party library code.
32 |
33 | Minified versions of the latest jQuery and Modernizr libraries are included by
34 | default. You may wish to create your own [custom Modernizr
35 | build with the online builder](https://www.modernizr.com/download/) or [command
36 | line tool](https://modernizr.com/docs#command-line-config).
37 |
--------------------------------------------------------------------------------
/html/doc/usage.md:
--------------------------------------------------------------------------------
1 | [HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation
2 | table of contents](TOC.md)
3 |
4 | # Usage
5 |
6 | The most basic usage of HTML5 Boilerplate is to create a static site or simple
7 | app. Once you've downloaded or cloned the project, that process looks something
8 | like this:
9 |
10 | 1. Set up the basic structure of the site.
11 | 2. Add some content, style, and functionality.
12 | 3. Run your site locally to see how it looks.
13 | 4. Deploy your site.
14 |
15 | Cool, right? _It is_. That said, the smart defaults, baseline elements, default
16 | attribute values and various other utilities that HTML5 Boilerplate offers can
17 | serve as the foundation for whatever you're interested in building.
18 |
19 | Even the basic use-case of a simple static site can be enhanced by manipulating
20 | the code through an automated build process. Moving up in complexity HTML5
21 | Boilerplate can be integrated with whatever front-end framework, CMS or
22 | e-commerce platform you're working with. Mix-and-match to your heart's content.
23 | Use what you need (toss it in a blender if you need to) and discard the rest.
24 | HTML5 Boilerplate is a starting point, not a destination.
25 |
26 | ## Basic structure
27 |
28 | A basic HTML5 Boilerplate site initially looks something like this:
29 |
30 | ```
31 | .
32 | ├── css
33 | │ ├── main.css
34 | │ └── normalize.css
35 | ├── doc
36 | ├── img
37 | ├── js
38 | │ ├── main.js
39 | │ ├── plugins.js
40 | │ └── vendor
41 | │ ├── jquery.min.js
42 | │ └── modernizr.min.js
43 | ├── .editorconfig
44 | ├── .htaccess
45 | ├── 404.html
46 | ├── browserconfig.xml
47 | ├── favicon.ico
48 | ├── humans.txt
49 | ├── icon.png
50 | ├── index.html
51 | ├── robots.txt
52 | ├── site.webmanifest
53 | ├── tile.png
54 | └── tile-wide.png
55 | ```
56 |
57 | What follows is a general overview of each major part and how to use them.
58 |
59 | ### css
60 |
61 | This directory should contain all your project's CSS files. It includes some
62 | initial CSS to help get you started from a solid foundation. [About the
63 | CSS](css.md).
64 |
65 | ### doc
66 |
67 | This directory contains all the HTML5 Boilerplate documentation. You can use it
68 | as the location and basis for your own project's documentation.
69 |
70 | ### js
71 |
72 | This directory should contain all your project's JS files. Libraries, plugins,
73 | and custom code can all be included here. It includes some initial JS to help
74 | get you started. [About the JavaScript](js.md).
75 |
76 | ### .htaccess
77 |
78 | The default web server configs are for Apache. For more information, please
79 | refer to the [Apache Server Configs
80 | repository](https://github.com/h5bp/server-configs-apache).
81 |
82 | Host your site on a server other than Apache? You're likely to find the
83 | corresponding server configs project listed in our [Server Configs
84 | ](https://github.com/h5bp/server-configs/blob/master/README.md) repository.
85 |
86 | ### 404.html
87 |
88 | A helpful custom 404 to get you started.
89 |
90 | ### browserconfig.xml
91 |
92 | This file contains all settings regarding custom tiles for IE11 and Edge.
93 |
94 | For more info on this topic, please refer to
95 | [Microsoft's Docs](https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/dn320426(v=vs.85)).
96 |
97 | ### .editorconfig
98 |
99 | The `.editorconfig` file is provided in order to encourage and help you and
100 | your team to maintain consistent coding styles between different
101 | editors and IDEs. [Read more about the `.editorconfig` file](misc.md#editorconfig).
102 |
103 | ### index.html
104 |
105 | This is the default HTML skeleton that should form the basis of all pages on
106 | your site. If you are using a server-side templating framework, then you will
107 | need to integrate this starting HTML with your setup.
108 |
109 | Make sure that you update the URLs for the referenced CSS and JavaScript if you
110 | modify the directory structure at all.
111 |
112 | If you are using Google Universal Analytics, make sure that you edit the
113 | corresponding snippet at the bottom to include your analytics ID.
114 |
115 | ### humans.txt
116 |
117 | Edit this file to include the team that worked on your site/app, and the
118 | technology powering it.
119 |
120 | ### robots.txt
121 |
122 | Edit this file to include any pages you need hidden from search engines.
123 |
124 | ### Icons
125 |
126 | Replace the default `favicon.ico`, `tile.png`, `tile-wide.png` and Apple
127 | Touch Icon with your own.
128 |
129 | If you want to use different Apple Touch Icons for different resolutions please
130 | refer to the [according documentation](extend.md#apple-touch-icons).
131 |
--------------------------------------------------------------------------------
/html/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/favicon.ico
--------------------------------------------------------------------------------
/html/humans.txt:
--------------------------------------------------------------------------------
1 | # humanstxt.org/
2 | # The humans responsible & technology colophon
3 |
4 | # TEAM
5 |
6 | -- --
7 |
8 | # THANKS
9 |
10 |
11 |
12 | # TECHNOLOGY COLOPHON
13 |
14 | CSS3, HTML5
15 | Apache Server Configs, jQuery, Modernizr, Normalize.css
16 |
--------------------------------------------------------------------------------
/html/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/icon.png
--------------------------------------------------------------------------------
/html/img/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/.gitignore
--------------------------------------------------------------------------------
/html/img/app.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/app.jpg
--------------------------------------------------------------------------------
/html/img/behavior.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/behavior.jpeg
--------------------------------------------------------------------------------
/html/img/behavior2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/behavior2.png
--------------------------------------------------------------------------------
/html/img/car1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/car1.jpg
--------------------------------------------------------------------------------
/html/img/car2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/car2.jpg
--------------------------------------------------------------------------------
/html/img/car3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/car3.jpg
--------------------------------------------------------------------------------
/html/img/car4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/car4.jpg
--------------------------------------------------------------------------------
/html/img/car5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/car5.jpg
--------------------------------------------------------------------------------
/html/img/car6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/car6.jpg
--------------------------------------------------------------------------------
/html/img/car7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/car7.jpg
--------------------------------------------------------------------------------
/html/img/carAttribute_main.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carAttribute_main.jpg
--------------------------------------------------------------------------------
/html/img/carBoard.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carBoard.jpg
--------------------------------------------------------------------------------
/html/img/carBoard_main.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carBoard_main.jpg
--------------------------------------------------------------------------------
/html/img/carCount.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carCount.png
--------------------------------------------------------------------------------
/html/img/carInfo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carInfo.jpg
--------------------------------------------------------------------------------
/html/img/carInfo_main.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carInfo_main.jpg
--------------------------------------------------------------------------------
/html/img/carTeller_main.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carTeller_main.jpg
--------------------------------------------------------------------------------
/html/img/carTeller_temp.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carTeller_temp.jpg
--------------------------------------------------------------------------------
/html/img/carTypeApp.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carTypeApp.jpg
--------------------------------------------------------------------------------
/html/img/carType_main.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/carType_main.jpg
--------------------------------------------------------------------------------
/html/img/driverBehavior.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/driverBehavior.jpg
--------------------------------------------------------------------------------
/html/img/intro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/intro.png
--------------------------------------------------------------------------------
/html/img/login2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/login2.jpg
--------------------------------------------------------------------------------
/html/img/login_body_bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/login_body_bg.jpg
--------------------------------------------------------------------------------
/html/img/phoneDect.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/phoneDect.png
--------------------------------------------------------------------------------
/html/img/roll_board1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/roll_board1.jpg
--------------------------------------------------------------------------------
/html/img/roll_board2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/roll_board2.jpg
--------------------------------------------------------------------------------
/html/img/roll_board3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/roll_board3.jpg
--------------------------------------------------------------------------------
/html/img/timg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/img/timg.jpg
--------------------------------------------------------------------------------
/html/jpg/12019-07-12107_04_23.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/jpg/12019-07-12107_04_23.jpg
--------------------------------------------------------------------------------
/html/jpg/12019-07-12107_07_14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/jpg/12019-07-12107_07_14.jpg
--------------------------------------------------------------------------------
/html/jpg/12019-07-12107_08_26.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/jpg/12019-07-12107_08_26.jpg
--------------------------------------------------------------------------------
/html/jpg/12019-07-12107_09_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/jpg/12019-07-12107_09_01.jpg
--------------------------------------------------------------------------------
/html/jpg/12019-07-12107_09_22.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/jpg/12019-07-12107_09_22.jpg
--------------------------------------------------------------------------------
/html/layui/css/modules/code.css:
--------------------------------------------------------------------------------
1 | /** layui-v2.5.4 MIT License By https://www.layui.com */
2 | html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}
--------------------------------------------------------------------------------
/html/layui/css/modules/layer/default/icon-ext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/css/modules/layer/default/icon-ext.png
--------------------------------------------------------------------------------
/html/layui/css/modules/layer/default/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/css/modules/layer/default/icon.png
--------------------------------------------------------------------------------
/html/layui/css/modules/layer/default/loading-0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/css/modules/layer/default/loading-0.gif
--------------------------------------------------------------------------------
/html/layui/css/modules/layer/default/loading-1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/css/modules/layer/default/loading-1.gif
--------------------------------------------------------------------------------
/html/layui/css/modules/layer/default/loading-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/css/modules/layer/default/loading-2.gif
--------------------------------------------------------------------------------
/html/layui/font/iconfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/font/iconfont.eot
--------------------------------------------------------------------------------
/html/layui/font/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/font/iconfont.ttf
--------------------------------------------------------------------------------
/html/layui/font/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/font/iconfont.woff
--------------------------------------------------------------------------------
/html/layui/font/iconfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/font/iconfont.woff2
--------------------------------------------------------------------------------
/html/layui/images/face/0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/0.gif
--------------------------------------------------------------------------------
/html/layui/images/face/1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/1.gif
--------------------------------------------------------------------------------
/html/layui/images/face/10.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/10.gif
--------------------------------------------------------------------------------
/html/layui/images/face/11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/11.gif
--------------------------------------------------------------------------------
/html/layui/images/face/12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/12.gif
--------------------------------------------------------------------------------
/html/layui/images/face/13.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/13.gif
--------------------------------------------------------------------------------
/html/layui/images/face/14.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/14.gif
--------------------------------------------------------------------------------
/html/layui/images/face/15.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/15.gif
--------------------------------------------------------------------------------
/html/layui/images/face/16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/16.gif
--------------------------------------------------------------------------------
/html/layui/images/face/17.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/17.gif
--------------------------------------------------------------------------------
/html/layui/images/face/18.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/18.gif
--------------------------------------------------------------------------------
/html/layui/images/face/19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/19.gif
--------------------------------------------------------------------------------
/html/layui/images/face/2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/2.gif
--------------------------------------------------------------------------------
/html/layui/images/face/20.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/20.gif
--------------------------------------------------------------------------------
/html/layui/images/face/21.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/21.gif
--------------------------------------------------------------------------------
/html/layui/images/face/22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/22.gif
--------------------------------------------------------------------------------
/html/layui/images/face/23.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/23.gif
--------------------------------------------------------------------------------
/html/layui/images/face/24.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/24.gif
--------------------------------------------------------------------------------
/html/layui/images/face/25.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/25.gif
--------------------------------------------------------------------------------
/html/layui/images/face/26.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/26.gif
--------------------------------------------------------------------------------
/html/layui/images/face/27.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/27.gif
--------------------------------------------------------------------------------
/html/layui/images/face/28.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/28.gif
--------------------------------------------------------------------------------
/html/layui/images/face/29.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/29.gif
--------------------------------------------------------------------------------
/html/layui/images/face/3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/3.gif
--------------------------------------------------------------------------------
/html/layui/images/face/30.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/30.gif
--------------------------------------------------------------------------------
/html/layui/images/face/31.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/31.gif
--------------------------------------------------------------------------------
/html/layui/images/face/32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/32.gif
--------------------------------------------------------------------------------
/html/layui/images/face/33.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/33.gif
--------------------------------------------------------------------------------
/html/layui/images/face/34.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/34.gif
--------------------------------------------------------------------------------
/html/layui/images/face/35.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/35.gif
--------------------------------------------------------------------------------
/html/layui/images/face/36.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/36.gif
--------------------------------------------------------------------------------
/html/layui/images/face/37.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/37.gif
--------------------------------------------------------------------------------
/html/layui/images/face/38.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/38.gif
--------------------------------------------------------------------------------
/html/layui/images/face/39.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/39.gif
--------------------------------------------------------------------------------
/html/layui/images/face/4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/4.gif
--------------------------------------------------------------------------------
/html/layui/images/face/40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/40.gif
--------------------------------------------------------------------------------
/html/layui/images/face/41.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/41.gif
--------------------------------------------------------------------------------
/html/layui/images/face/42.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/42.gif
--------------------------------------------------------------------------------
/html/layui/images/face/43.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/43.gif
--------------------------------------------------------------------------------
/html/layui/images/face/44.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/44.gif
--------------------------------------------------------------------------------
/html/layui/images/face/45.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/45.gif
--------------------------------------------------------------------------------
/html/layui/images/face/46.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/46.gif
--------------------------------------------------------------------------------
/html/layui/images/face/47.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/47.gif
--------------------------------------------------------------------------------
/html/layui/images/face/48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/48.gif
--------------------------------------------------------------------------------
/html/layui/images/face/49.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/49.gif
--------------------------------------------------------------------------------
/html/layui/images/face/5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/5.gif
--------------------------------------------------------------------------------
/html/layui/images/face/50.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/50.gif
--------------------------------------------------------------------------------
/html/layui/images/face/51.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/51.gif
--------------------------------------------------------------------------------
/html/layui/images/face/52.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/52.gif
--------------------------------------------------------------------------------
/html/layui/images/face/53.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/53.gif
--------------------------------------------------------------------------------
/html/layui/images/face/54.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/54.gif
--------------------------------------------------------------------------------
/html/layui/images/face/55.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/55.gif
--------------------------------------------------------------------------------
/html/layui/images/face/56.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/56.gif
--------------------------------------------------------------------------------
/html/layui/images/face/57.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/57.gif
--------------------------------------------------------------------------------
/html/layui/images/face/58.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/58.gif
--------------------------------------------------------------------------------
/html/layui/images/face/59.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/59.gif
--------------------------------------------------------------------------------
/html/layui/images/face/6.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/6.gif
--------------------------------------------------------------------------------
/html/layui/images/face/60.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/60.gif
--------------------------------------------------------------------------------
/html/layui/images/face/61.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/61.gif
--------------------------------------------------------------------------------
/html/layui/images/face/62.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/62.gif
--------------------------------------------------------------------------------
/html/layui/images/face/63.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/63.gif
--------------------------------------------------------------------------------
/html/layui/images/face/64.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/64.gif
--------------------------------------------------------------------------------
/html/layui/images/face/65.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/65.gif
--------------------------------------------------------------------------------
/html/layui/images/face/66.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/66.gif
--------------------------------------------------------------------------------
/html/layui/images/face/67.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/67.gif
--------------------------------------------------------------------------------
/html/layui/images/face/68.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/68.gif
--------------------------------------------------------------------------------
/html/layui/images/face/69.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/69.gif
--------------------------------------------------------------------------------
/html/layui/images/face/7.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/7.gif
--------------------------------------------------------------------------------
/html/layui/images/face/70.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/70.gif
--------------------------------------------------------------------------------
/html/layui/images/face/71.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/71.gif
--------------------------------------------------------------------------------
/html/layui/images/face/8.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/8.gif
--------------------------------------------------------------------------------
/html/layui/images/face/9.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoRobb/CarTeller/055b646328e2b07ec9bc666ed9e180ee7c5de8ca/html/layui/images/face/9.gif
--------------------------------------------------------------------------------
/html/layui/lay/modules/carousel.js:
--------------------------------------------------------------------------------
1 | /** layui-v2.5.4 MIT License By https://www.layui.com */
2 | ;layui.define("jquery",function(e){"use strict";var i=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var n=this;return n.config=i.extend({},n.config,e),n},on:function(e,i){return layui.onevent.call(this,t,e,i)}}),t="carousel",a="layui-this",l=">*[carousel-item]>*",o="layui-carousel-left",r="layui-carousel-right",d="layui-carousel-prev",s="layui-carousel-next",u="layui-carousel-arrow",c="layui-carousel-ind",m=function(e){var t=this;t.config=i.extend({},t.config,n.config,e),t.render()};m.prototype.config={width:"600px",height:"280px",full:!1,arrow:"hover",indicator:"inside",autoplay:!0,interval:3e3,anim:"",trigger:"click",index:0},m.prototype.render=function(){var e=this,n=e.config;n.elem=i(n.elem),n.elem[0]&&(e.elemItem=n.elem.find(l),n.index<0&&(n.index=0),n.index>=e.elemItem.length&&(n.index=e.elemItem.length-1),n.interval<800&&(n.interval=800),n.full?n.elem.css({position:"fixed",width:"100%",height:"100%",zIndex:9999}):n.elem.css({width:n.width,height:n.height}),n.elem.attr("lay-anim",n.anim),e.elemItem.eq(n.index).addClass(a),e.elemItem.length<=1||(e.indicator(),e.arrow(),e.autoplay(),e.events()))},m.prototype.reload=function(e){var n=this;clearInterval(n.timer),n.config=i.extend({},n.config,e),n.render()},m.prototype.prevIndex=function(){var e=this,i=e.config,n=i.index-1;return n<0&&(n=e.elemItem.length-1),n},m.prototype.nextIndex=function(){var e=this,i=e.config,n=i.index+1;return n>=e.elemItem.length&&(n=0),n},m.prototype.addIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index+e,n.index>=i.elemItem.length&&(n.index=0)},m.prototype.subIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index-e,n.index<0&&(n.index=i.elemItem.length-1)},m.prototype.autoplay=function(){var e=this,i=e.config;i.autoplay&&(clearInterval(e.timer),e.timer=setInterval(function(){e.slide()},i.interval))},m.prototype.arrow=function(){var e=this,n=e.config,t=i(['",'"].join(""));n.elem.attr("lay-arrow",n.arrow),n.elem.find("."+u)[0]&&n.elem.find("."+u).remove(),n.elem.append(t),t.on("click",function(){var n=i(this),t=n.attr("lay-type");e.slide(t)})},m.prototype.indicator=function(){var e=this,n=e.config,t=e.elemInd=i(['