<main>
<css-doodle grid="1x100" #1>
:doodle {
--rotate: @r(0, 360)deg;
}
@place-cell: center;
@size: calc(100% - @calc(@index() - 1) * 1%);
transform: rotate(calc(@index() * var(--rotate)));
:after {
content: '';
background: var(--doodle-bg);
@size: 100%;
clip-path: @shape(
split: 100;
r: cos(@r(3, 10)t);
);
}
filter: drop-shadow(-1px 0px 5px hsla(
calc(calc(100 - @index()) * 2.55),
80%,
65%,
calc(@index() / 100)
));
</css-doodle>
<css-doodle grid="1x100" #2>
:doodle {
--rotate: @r(0, 360)deg;
}
@place-cell: center;
@size: calc(100% - @calc(@index() - 1) * 1%);
transform: rotate(calc(@index() * var(--rotate)));
:after {
content: '';
background: var(--doodle-bg);
@size: 100%;
clip-path: @shape(
split: 200;
r: cos(10t);
);
}
filter: drop-shadow(-1px 0px 5px hsla(
calc(calc(100 - @index()) * 2.55),
80%,
65%,
calc(@index() / 100)
));
</css-doodle>
<css-doodle grid="1x100" #3>
:doodle {
--rotate: @r(0, 360)deg;
}
@place-cell: center;
@size: calc(100% - @calc(@index() - 1) * 1%);
transform: rotate(calc(@index() * var(--rotate)));
:after {
content: '';
background: var(--doodle-bg);
@size: 100%;
clip-path: @shape(
split: 240;
scale: .34;
origin: 0 -1.6;
degree: 180;
s: sqrt.abs.cos(t) / (sin(t) + 1.6);
r: 2 + (s - 2) * sin(t);
);
}
filter: drop-shadow(-1px 0px 5px hsla(
calc(calc(100 - @index()) * 2.55),
80%,
65%,
calc(@index() / 100)
));
</css-doodle>
<css-doodle grid="1x100" #4>
@place-cell: center;
@size: calc(100% - @calc(@index() - 1) * 1%);
transform: rotate(calc(@index() * 120deg));
:after {
content: '';
background: var(--doodle-bg);
@size: 100%;
clip-path: @shape(
split: 300;
scale: .7;
r: cos.cos.cos.cos.cos(7t) ^ cos(7t);
);
}
filter: drop-shadow(2px 0px 10px hsla(
calc(calc(100 - @index()) * 2.55),
calc(@index() * 1%),
50%,
calc(@index() / 100)
));
</css-doodle>
<css-doodle grid="1x100" #5>
:doodle {
--rotate: @r(0, 360)deg;
}
@place-cell: center;
@size: calc(100% - @calc(@index() - 1) * 1%);
transform: rotate(calc(@index() * 90deg));
:after {
content: '';
background: var(--doodle-bg);
@size: 100%;
@shape: bicorn;
}
filter: drop-shadow(2px 0px 5px hsla(
calc(calc(100 - @index()) * 2.55),
calc(@index() * 1%),
50%,
calc(@index() / 100)
));
</css-doodle>
<css-doodle grid="1x100" #6>
:doodle {
--rotate: @r(0, 360)deg;
}
@place-cell: center;
@size: calc(100% - @calc(@index() - 1) * 1%);
transform: rotate(calc(@index() * 90deg));
:after {
content: '';
background: var(--doodle-bg);
@size: 100%;
@shape: bud @r(5, 10);
}
filter: drop-shadow(0px 0px @r(1, 10)px hsla(
calc(calc(10 - @index()) * 2.55),
calc(@index() * 1%),
50%,
calc(@index() / 100)
));
</css-doodle>
<p>
CSS Art with
<a target="_blank" href="http://yuanchuan.name/css-doodle/">
<css-doodle />
</a>
</p>
</main>
xxxxxxxxxx
:root {
--body-bg: #0a0c27;
--doodle-bg: #000;
--col: 6;
--gap: 2px;
--width: 95vw;
--size: calc((var(--width) - (var(--col) - 1) * var(--gap)) / var(--col));
}
html, body {
height: 100%;
margin: 0;
background: var(--body-bg);
filter: brightness(1.3);
}
body {
display: flex;
align-items: center;
}
main {
display: grid;
width: var(--width);
margin: auto;
background: var(--body-bg);
padding: calc(50vw - var(--width) / 2) 0;
grid-template-columns: repeat(var(--col), 1fr);
grid-gap: var(--gap);
position: relative;
padding-bottom: 5em;
}
p {
position: absolute;
bottom: 2em;
margin: 0;
width: 100%;
text-align: center;
font-family: cursive;
font-size: .9em;
line-height: 1;
color: rgba(74, 78, 113, .5);
}
p a {
text-decoration: none;
color: rgba(128, 53, 101, .8);
background: linear-gradient(to left, currentColor 50%, transparent 50%) 0 100% repeat-x;
background-size: 2px 1px;
}
p a:hover {
color: rgba(128, 53, 101, 1);
}
css-doodle {
overflow: hidden;
width: var(--size);
height: var(--size);
background: var(--doodle-bg);
}
@media screen and (max-width: 80em) {
:root { --col: 3; }
}
@media screen and (max-width: 47.5em) {
:root { --col: 2; }
}
@media screen and (max-width: 25em) {
:root { --col: 1; }
}
xxxxxxxxxx
document.addEventListener('click', function(e) {
e.target.update && e.target.update();
});
// const doodle = document.querySelector('css-doodle');
// console.log('doodle', doodle.seed);
This Pen doesn't use any external CSS resources.