Travis build: 525

This commit is contained in:
30secondsofcode
2019-10-17 20:39:22 +00:00
parent 9083212f75
commit 65942ada58
3 changed files with 89 additions and 0 deletions

View File

@ -109,6 +109,7 @@ See CONTRIBUTING.md for the snippet template.
* [`Shape separator`](#shape-separator)
* [`System font stack`](#system-font-stack)
* [`Toggle switch`](#toggle-switch)
* [`Transform - Detransform`](#transform---detransform)
* [`Triangle`](#triangle)
* [`Zebra striped list`](#zebra-striped-list)
@ -2636,6 +2637,52 @@ input[type='checkbox']:checked + .switch {
<br>[⬆ Back to top](#contents)
### Transform - Detransform
Sets a transform on the parent element and de-transforms the child elements, so they are not affected by the transform.
This allows for some neat effects such as skewed buttons.
```html
<div class="parent"><div class="child">Child content</div></div>
```
```css
:root {
--transform: 10deg;
}
.parent {
transform: skewX(var(--transform));
padding: 1rem;
border: 1px solid;
display: inline-block;
}
.child {
transform: skewX(calc(-1 * var(--transform)));
}
```
#### Explanation
- `--transform: 10deg` sets a CSS variable we can later use to prevent duplicate code.
- `calc(-1 * var(--transform))` on the child element negates the transform from the parent.
- Note: the `display` property of the child element may not be `inline`, otherwise the transform will be ignored ([see also](https://drafts.csswg.org/css-transforms-1/#terminology)).
#### Browser support
100.0%
<span class="snippet__support-note">⚠️ Requires prefix for full support.</span>
- https://caniuse.com/#feat=transforms2d
<br>[⬆ Back to top](#contents)
### Triangle
Creates a triangle shape with pure CSS.

View File

@ -699,6 +699,21 @@
"hash": "9ee4bb8713d24b9e6f5367eb05645c6e41d205b120b4d06a9a949984c7cd73b0"
}
},
{
"id": "transform-detransform",
"type": "snippetListing",
"title": "Transform - Detransform",
"attributes": {
"text": "Sets a transform on the parent element and de-transforms the child elements, so they are not affected by the transform.\nThis allows for some neat effects such as skewed buttons.\n\n",
"tags": [
"visual",
"beginner"
]
},
"meta": {
"hash": "3d669f655ec92a355b355d2d35e6e9262ad582671abac860d7170893ac68e467"
}
},
{
"id": "triangle",
"type": "snippetListing",

View File

@ -1287,6 +1287,33 @@
"hash": "9ee4bb8713d24b9e6f5367eb05645c6e41d205b120b4d06a9a949984c7cd73b0"
}
},
{
"id": "transform-detransform",
"title": "Transform - Detransform",
"type": "snippet",
"attributes": {
"fileName": "transform-detransform.md",
"text": "Sets a transform on the parent element and de-transforms the child elements, so they are not affected by the transform.\nThis allows for some neat effects such as skewed buttons.\n\n",
"explanation": "\n\n- `--transform: 10deg` sets a CSS variable we can later use to prevent duplicate code.\n- `calc(-1 * var(--transform))` on the child element negates the transform from the parent.\n\n- Note: the `display` property of the child element may not be `inline`, otherwise the transform will be ignored ([see also](https://drafts.csswg.org/css-transforms-1/#terminology)).\n\n",
"browserSupport": {
"text": "\n\n<span class=\"snippet__support-note\">⚠️ Requires prefix for full support.</span>\n\n- https://caniuse.com/#feat=transforms2d\n",
"supportPercentage": 100
},
"codeBlocks": {
"html": "<div class=\"parent\"><div class=\"child\">Child content</div></div>",
"css": ":root {\n --transform: 10deg;\n}\n\n.parent {\n transform: skewX(var(--transform));\n padding: 1rem;\n border: 1px solid;\n display: inline-block;\n}\n\n.child {\n transform: skewX(calc(-1 * var(--transform)));\n}",
"js": "",
"scopedCss": "[data-scope=\"transform-detransform\"] :root {\n --transform: 10deg; }\n\n[data-scope=\"transform-detransform\"] .parent {\n transform: skewX(var(--transform));\n padding: 1rem;\n border: 1px solid;\n display: inline-block; }\n\n[data-scope=\"transform-detransform\"] .child {\n transform: skewX(calc(-1 * var(--transform))); }\n"
},
"tags": [
"visual",
"beginner"
]
},
"meta": {
"hash": "3d669f655ec92a355b355d2d35e6e9262ad582671abac860d7170893ac68e467"
}
},
{
"id": "triangle",
"title": "Triangle",