Skip to content

Commit

Permalink
Merge pull request #2 from MSadeghzadehG/laptop-display
Browse files Browse the repository at this point in the history
laptap completed
  • Loading branch information
MSadeghzadehG authored Mar 27, 2018
2 parents dad0c06 + ce55e56 commit 5a27690
Show file tree
Hide file tree
Showing 58 changed files with 12,883 additions and 0 deletions.
19 changes: 19 additions & 0 deletions transition-html/typed.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<html>
<head>
<script type="text/javascript" src="typed.js-master\lib\typed.js"></script>
</head>
<body bgcolor="#696969" id="texture1" style = "overflow:hidden;">
<div id="typed-strings">

</div>
<span id="typed"></span>

</body>
<script>
var typed = new Typed('#typed-strings', {
strings : ['sfjsdgg','sdfsdf','fdsfs']
});

</script>

</html>
31 changes: 31 additions & 0 deletions transition-html/typed.js-master/.codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
engines:
csslint:
enabled: false
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
eslint:
enabled: true
fixme:
enabled: false
ratings:
paths:
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
- "**.php"
- "**.py"
- "**.rb"
exclude_paths:
- dist/
- lib/
- docs/
- assets/
2 changes: 2 additions & 0 deletions transition-html/typed.js-master/.csslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--exclude-exts=.min.css
--ignore=adjoining-classes,box-model,ids,order-alphabetical,unqualified-attributes
4 changes: 4 additions & 0 deletions transition-html/typed.js-master/.esdoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"source": "./src",
"destination": "./docs"
}
3 changes: 3 additions & 0 deletions transition-html/typed.js-master/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**/*{.,-}min.js
./demos/**.js
gulpfile.js
25 changes: 25 additions & 0 deletions transition-html/typed.js-master/.eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
extends: standard
rules:
semi: 0
no-extra-semi: 0
space-before-function-paren: [error, never]

plugins:
- standard

parserOptions:
sourceType: module
ecmaFeatures:
modules: true

env:
amd: true
browser: true
es6: true
jquery: true
node: true

overrides:
- files: ["./demos*.js"]
excludedFiles: "./demos/*.js"
44 changes: 44 additions & 0 deletions transition-html/typed.js-master/.github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Contributing

🎉🎉🎉 Thank you for contributing! 🎉🎉🎉

I greatly appreciate anyone taking the time to help make Typed.js better.

## Development

First, clone the repo onto your local machine.
```
git clone [email protected]:mattboldt/typed.js.git
cd typed.js
```

Then, make sure you have all the development dependencies installed.
```
yarn install
```
(note: you will need Node.js, `yarn`, and `gulp` installed globally on your system)

To get things going:
```
gulp serve
open http://localhost:3000
```
There you will see a list of pre-made demos showing each feature of Typed.js in action.

**Comb through these demos carefully and insure all features are working as expected with your additions**

## Pull Request Etiquette

If this is purely a README update, you can skip everything below.

You need to include a demo of your changes (new features, a bug fix, etc) in a fork of this JSFiddle: https://jsfiddle.net/mattboldt/1xs3LLmL/

To include your branch's version of Typed.js, simply add this JavaScript url as a dependency in JSFiddle, and remove the default:

```
https://rawgit.com/<YOUR GITHUB USERNAME>/typed.js/<YOUR BRANCH NAME>/lib/typed.min.js
```

Include a link to the fiddle in the details of your pull request.

Thank you, and happy typing!
27 changes: 27 additions & 0 deletions transition-html/typed.js-master/.github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!--
IMPORTANT: If applicable, please use the following format to create a new issue.
If your issue is not created using the format below, it will be closed.
-->

### Description

[Description of the issue]

### Demo
[If possible, include a demo of your issue in a fork of this JSFiddle: https://jsfiddle.net/mattboldt/1xs3LLmL/]

### Steps to Reproduce

1. [First Step]
2. [Second Step]
3. [and so on...]

**Expected behavior:** [What you expect to happen]

**Actual behavior:** [What actually happens]

**Reproduces how often:** [What percentage of the time does it reproduce?]

### Additional Information

Any additional information, configuration or data that might be necessary to reproduce the issue.
38 changes: 38 additions & 0 deletions transition-html/typed.js-master/.github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
### Requirements

<!--
Filling out this template is required.
-->

- [ ] Have you viewed your changes locally on the demos page, located on https://github.com/mattboldt/typed.js/blob/master/index.html?

- [ ] If necessary, have you added a new demo to the index.html list of demos? If it's an improvement or small addition, have you added it to an existing demo on the demos page?

- [ ] If applicable, have you created a fork of the following JSFiddle with your branch's code and your new feature showcased?

<!--
To include your branch's version of Typed.js, simply add this JavaScript url as a dependency in JSFiddle, and remove the default:
https://jsfiddle.net/mattboldt/1xs3LLmL/
```
https://rawgit.com/<YOUR GITHUB USERNAME>/typed.js/<YOUR BRANCH NAME>/lib/typed.min.js
```
-->

### Description of the Change

<!--
We must be able to understand the design of your change from this description. If we can't get a good idea of what the code will be doing from the description here, the pull request may be closed at the maintainers' discretion.
-->

### Benefits

<!-- What benefits will be realized by the code change? -->

### Issues

<!-- Enter any applicable Issues here -->
4 changes: 4 additions & 0 deletions transition-html/typed.js-master/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.sass-cache
*.DS_Store
*~
node_modules
16 changes: 16 additions & 0 deletions transition-html/typed.js-master/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: node_js
notifications:
email:
on_success: never
on_failure: never
node_js:
- '6'
addons:
sauce_connect: true
env:
global:
before_install:
- yarn install
before_script:
- yarn global add gulp
- gulp
14 changes: 14 additions & 0 deletions transition-html/typed.js-master/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${file}"
}
]
}
11 changes: 11 additions & 0 deletions transition-html/typed.js-master/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"eslint.enable": true,
"eslint.options": { "configFile": "./.eslintrc.yml" },
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
"**/lib": true
}
}
46 changes: 46 additions & 0 deletions transition-html/typed.js-master/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
21 changes: 21 additions & 0 deletions transition-html/typed.js-master/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2017 Matt Boldt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Loading

0 comments on commit 5a27690

Please sign in to comment.