HackerTrans
TopNewTrendsCommentsPastAskShowJobs

SynnVoid

no profile record

comments

SynnVoid
·il y a 6 mois·discuss
Thank you ^_^

>Some description of the controls would be great True, i'll add that tomorrow
SynnVoid
·il y a 6 mois·discuss
https://onivers.com/ My little place to experiment with creative web dev
SynnVoid
·l’année dernière·discuss
Nice color propagation! I enjoyed the different base shapes (triangle, hexagon, etc.). I had experimented with the hexagonal version in Three.js here: https://onivers.com/hexalife/ tweaking the rules to explore interesting patterns.
SynnVoid
·il y a 2 ans·discuss
Quite the same if you use nested css on the div.class-name-here. The diff is in the semantic. My post was about using nested CSS to "emulate" @scope
SynnVoid
·il y a 2 ans·discuss
For now, as Firefox support is not yet good, We can use nested rules in CSS. HTML:

<my-custom-element> <p>This is a paragraph</p> </my-custom-element>

CSS:

my-custom-element { p { color: blue; } }

By choosing a unique name for the custom element, we achieve near the same functionality as @scope.
SynnVoid
·il y a 2 ans·discuss
Another good resource for maze algorithms is Walter D. Pullen's website: https://www.astrolog.org/labyrnth/algrithm.htm . The page showing his maze generations is also interesting: https://www.astrolog.org/labyrnth/maze.htm .