Skip to content

Instantly share code, notes, and snippets.

@mqxu
mqxu / customer-management-ui.markdown
Created March 14, 2021 17:03
Customer Management UI
@mqxu
mqxu / index.html
Created March 14, 2021 17:02
React Color Gradients
<div id="root"></div>
@mqxu
mqxu / index.html
Created March 14, 2021 17:01
React Generative Bedroom Wall Art
<div id="root"></div>
@mqxu
mqxu / card-hover-interactions.markdown
Created March 14, 2021 17:00
Card Hover Interactions

Card Hover Interactions

Hacking together a solution to show part of an element in a card as a default state, lining up the element headline across each card and then animating the element to the center of its parent element

A Pen by Ryan Mulligan on CodePen.

License.

@mqxu
mqxu / animated-tab-bar.markdown
Created March 14, 2021 16:59
Animated Tab Bar
@mqxu
mqxu / generative-macos-big-sur-waves-svg.markdown
Created March 14, 2021 16:58
Generative macOS Big Sur Waves 🌊 [SVG]

Generative macOS Big Sur Waves 🌊 [SVG]

This is a generative program that creates macOS Big Sur style wave backgrounds. Each image is random within constraints

The waves generated here may not always look perfect, but they are unique! If you find an output you like, you can copy the SVG to your clipboard using the download button 🚀

Interested in a tutorial on how I made this? Let me know!

A Pen by George Francis on CodePen.

@mqxu
mqxu / examples-vue-pug.markdown
Created March 14, 2021 16:57
Examples Vue Pug
@mqxu
mqxu / index.pug
Created March 14, 2021 16:56
Materialize CSS, Vue, Pug, Sass, CoffeeScript
body.blue-grey.darken-3
#root
.side-nav#mobile.blue-grey.darken-3
ul
li(v-for="link in links")
a(:href="link.link")
span(v-text="link.text").blue-grey-text.text-lighten-3.flow-text
i(v-text="link.icon").material-icons.left.blue-grey-text.text-lighten-3
header
@mqxu
mqxu / index.pug
Created March 14, 2021 16:54
Sorting a Table with Vue + pug
#demo.container
input(v-model="search" placeholder="Filter users by name or age").form-control
table.table.table-striped
thead
tr
th(v-repeat="column: columns")
a(href="#" v-on="click: sortBy(column)" v-class="active: sortKey == column") {{ column | capitalize }}
tbody
tr(v-repeat="users | filterBy search | orderBy sortKey reverse")
td {{ name }}
@mqxu
mqxu / index.pug
Created March 14, 2021 16:53
Vue + Pug to-do (with transitions)
main#app.container
div.section
form(@submit.prevent="addItem")
label.label Add another
div.field.has-addons
div.control
input.input(required, autofocus, v-model="newItem", placeholder="Remake this in React")
button(type="submit").button.is-info
i.fa.fa-plus
span Add