forked from Aqro/gooey-hover-codrops
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit cfc8d4f
Showing
54 changed files
with
2,540 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"useBuiltIns": "entry", | ||
"targets": { | ||
"browsers": ["ie >= 10", "> 1%"] | ||
} | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
end_of_line = lf | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.yml] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"extends": "airbnb", | ||
"plugins": [ | ||
"import" | ||
], | ||
"parser": "babel-eslint", | ||
"env": { "browser": true }, | ||
"globals": { | ||
"APP": true, | ||
"Linear": true, | ||
"Cubic": true, | ||
"Quad": true, | ||
"Expo": true, | ||
"Power1": true, | ||
"Power2": true, | ||
"Power3": true, | ||
"Power4": true, | ||
"Elastic": true, | ||
"Back": true, | ||
"Strong": true, | ||
"ExpoScaleEase": true, | ||
"TimelineMax": true, | ||
"ga": true | ||
}, | ||
"rules": { | ||
"no-use-before-define": "off", | ||
"react/forbid-prop-types": "off", | ||
"react/jsx-filename-extension": ["error", { "extensions": [".js"] }], | ||
"semi": ["error", "never"], | ||
"key-spacing": [0], | ||
"no-multi-spaces": [1, { | ||
"exceptions": { | ||
"Property": true, | ||
"VariableDeclarator": true, | ||
"AssignmentExpression": true | ||
} | ||
}], | ||
"no-multiple-empty-lines": [1, { | ||
"max": 4 | ||
}], | ||
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }], | ||
"max-len": [1, 130], | ||
"indent": ["error", 4, { "SwitchCase": 1 }], | ||
"no-param-reassign": [2, { "props": false }], | ||
"padded-blocks": ["error", { "blocks": "never", "classes": "always" }], | ||
"object-curly-newline": ["error", { | ||
"ObjectExpression": { "minProperties": 6, "multiline": true, "consistent": true }, | ||
"ObjectPattern": { "minProperties": 6, "multiline": true, "consistent": true } | ||
}] | ||
} | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/node_modules | ||
dist | ||
.DS_Store | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,216 @@ | ||
{ | ||
"extends": "stylelint-config-standard", | ||
"plugins": [ | ||
"stylelint-scss", | ||
"stylelint-order" | ||
], | ||
"rules": { | ||
"indentation": [4, { | ||
"ignore": ["value"] | ||
}], | ||
|
||
|
||
"max-empty-lines": 4, | ||
"block-opening-brace-space-before": "always-multi-line", | ||
"string-quotes": "single", | ||
"color-hex-case": "lower", | ||
"color-hex-length": "short", | ||
"color-named": "never", | ||
|
||
|
||
"selector-combinator-space-after": "always", | ||
"selector-attribute-quotes": "always", | ||
"selector-attribute-operator-space-before": "never", | ||
"selector-attribute-operator-space-after": "never", | ||
"selector-attribute-brackets-space-inside": "never", | ||
|
||
|
||
"declaration-block-single-line-max-declarations": 5, | ||
"declaration-block-trailing-semicolon": "always", | ||
"declaration-colon-space-before": "never", | ||
"declaration-colon-space-after": "always", | ||
"declaration-empty-line-before": null, | ||
|
||
|
||
"property-no-vendor-prefix": true, | ||
"value-no-vendor-prefix": true, | ||
"number-leading-zero": "never", | ||
"function-url-quotes": "always", | ||
"font-weight-notation": "numeric", | ||
"font-family-name-quotes": "always-unless-keyword", | ||
"comment-whitespace-inside": "always", | ||
"comment-empty-line-before": "always", | ||
|
||
|
||
"at-rule-no-vendor-prefix": true, | ||
"at-rule-no-unknown": [true, { | ||
"ignoreAtRules": ["mixin", "media", "content", "if", "else", "include", "extend", "for", "function", "return"] | ||
}], | ||
"at-rule-empty-line-before": ["always", { | ||
"except": ["after-same-name", "first-nested"], | ||
"ignore": ["after-comment", "blockless-after-same-name-blockless"], | ||
"ignoreAtRules": ["include"] | ||
}], | ||
|
||
"rule-empty-line-before": ["always-multi-line", { | ||
"except": ["first-nested"], | ||
"ignore": ["after-comment"] | ||
}], | ||
|
||
|
||
"selector-pseudo-element-colon-notation": "double", | ||
"selector-pseudo-class-parentheses-space-inside": "never", | ||
|
||
|
||
"media-feature-range-operator-space-before": "always", | ||
"media-feature-range-operator-space-after": "always", | ||
"media-feature-parentheses-space-inside": "never", | ||
"media-feature-colon-space-before": "never", | ||
"media-feature-colon-space-after": "always", | ||
|
||
|
||
"order/properties-order": [ | ||
{ | ||
"emptyLineBefore": "always", | ||
"properties": [ | ||
"content", | ||
"counter-reset", | ||
"counter-increment" | ||
] | ||
}, | ||
{ | ||
"emptyLineBefore": "always", | ||
"properties": [ | ||
"display", | ||
"visibility", | ||
"order", | ||
"clear", | ||
"float", | ||
"vertical-align", | ||
"align-self", | ||
"flex", | ||
"flex-shrink", | ||
"flex-direction", | ||
"flex-wrap", | ||
"flex-basis", | ||
"justify-content", | ||
"align-items", | ||
"overflow-scrolling", | ||
"overflow", | ||
"overflow-x", | ||
"overflow-y", | ||
"overflow-scrolling", | ||
"position", | ||
"top", | ||
"right", | ||
"bottom", | ||
"left", | ||
"z-index", | ||
"width", | ||
"height", | ||
"min-width", | ||
"min-height", | ||
"max-width", | ||
"max-height", | ||
"margin", | ||
"margin-top", | ||
"margin-right", | ||
"margin-bottom", | ||
"margin-left", | ||
"padding", | ||
"padding-top", | ||
"padding-right", | ||
"padding-bottom", | ||
"padding-left" | ||
] | ||
}, | ||
{ | ||
"emptyLineBefore": "always", | ||
"properties": [ | ||
"font-smoothing", | ||
"text-rendering", | ||
"white-space", | ||
"text-align", | ||
"text-indent", | ||
"font", | ||
"font-family", | ||
"font-style", | ||
"font-size", | ||
"font-weight", | ||
"line-height", | ||
"text-shadow", | ||
"text-decoration", | ||
"text-transform", | ||
"letter-spacing", | ||
"color" | ||
] | ||
}, | ||
{ | ||
"emptyLineBefore": "always", | ||
"properties": [ | ||
"appearance", | ||
"background", | ||
"background-image", | ||
"background-repeat", | ||
"background-size", | ||
"background-position", | ||
"background-color", | ||
"border", | ||
"border-width", | ||
"border-style", | ||
"border-color", | ||
"border-top", | ||
"border-right", | ||
"border-right-width", | ||
"border-right-style", | ||
"border-right-color", | ||
"border-bottom", | ||
"border-bottom-width", | ||
"border-bottom-style", | ||
"border-bottom-color", | ||
"border-left", | ||
"border-left-width", | ||
"border-left-style", | ||
"border-left-color", | ||
"border-radius", | ||
"border-top-right-radius", | ||
"border-bottom-right-radius", | ||
"border-bottom-left-radius", | ||
"border-top-left-radius", | ||
"fill", | ||
"stroke", | ||
"stroke-width", | ||
"stroke-linecap", | ||
"outline", | ||
"box-shadow", | ||
"opacity", | ||
"clip" | ||
] | ||
}, | ||
{ | ||
"emptyLineBefore": "always", | ||
"properties": [ | ||
"cursor", | ||
"pointer-events" | ||
] | ||
}, | ||
{ | ||
"emptyLineBefore": "always", | ||
"properties": [ | ||
"will-change", | ||
"backface-visibility", | ||
"transform-origin", | ||
"transform", | ||
"animation", | ||
"transition", | ||
"transition-property", | ||
"transition-duration", | ||
"transition-delay" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
*How to use this template:* | ||
|
||
- The general styles for the demo page are in css/base.css and individual styles go into the css/demoN.css | ||
- The README.md should be used to add credits and licensing information of resources used | ||
- For writing the tutorial, take a look at some guidelines in article.html | ||
- Delete this 'how to' in the final version and leave the following (fill in title/description, credits and social links): | ||
|
||
|
||
|
||
|
||
# The Title | ||
|
||
*Description*, *author* | ||
|
||
![Image Title](link) | ||
|
||
[Article on Codrops](https://tympanus.net/codrops/?p=) | ||
|
||
[Demo](http://tympanus.net/Development/.../) | ||
|
||
## Credits | ||
|
||
*third party resources* | ||
|
||
## License | ||
This resource can be used freely if integrated or build upon in personal or commercial projects such as websites, web apps and web templates intended for sale. It is not allowed to take the resource "as-is" and sell it, redistribute, re-publish it, or sell "pluginized" versions of it. Free plugins built using this resource should have a visible mention and link to the original work. Always consider the licenses of all included libraries, scripts and images used. | ||
|
||
## Misc | ||
|
||
Follow *Author*: [Twitter](), [Dribbble](), [Google+](), [GitHub]() | ||
|
||
Follow Codrops: [Twitter](http://www.twitter.com/codrops), [Facebook](http://www.facebook.com/codrops), [Google+](https://plus.google.com/101095823814290637419), [GitHub](https://github.com/codrops), [Pinterest](http://www.pinterest.com/codrops/), [Instagram](https://www.instagram.com/codropsss/) | ||
|
||
|
||
[© Codrops 2019](http://www.codrops.com) | ||
|
||
|
||
|
||
|
||
|
||
# trippy-hover-codrops |
Binary file not shown.
Oops, something went wrong.