Welcome to my Website!

This is a paragraph! Here's how you make a link: Neocities.

Cyan

muses

1

Bright

brights

3

Mithrun

kabumisu

4

Four

muses

1

Draven

kondrakis

4

Aphrodite

amaj

5

Lavender

muses

1

Meri

clefs

2

Kabru

kabumisu

4

Alter

muses

5

Kondraki

kondrakis

2

Ukulele

amaj

5

Diana

clefs

3

Dacty

muses

5

Meri Juniper

clefs

3

PG

none

4

Mink

muses

2

Tera

kondrakis

5

Sigurros

none

3

To learn more HTML/CSS, check out these tutorials!

// quick search regex var qsRegex; var buttonFilter; // init Isotope var $grid = $('.grid').isotope({ itemSelector: '.loid', layoutMode: 'fitRows', filter: function() { var $this = $(this); var searchResult = qsRegex ? $this.text().match( qsRegex ) : true; var buttonResult = buttonFilter ? $this.is( buttonFilter ) : true; return searchResult && buttonResult; } }); // make it so the things arent overlapping on load window.onload = function() { buttonFilter = '*'; $grid.isotope(); }; $('#filters').on( 'click', 'button', function() { buttonFilter = $( this ).attr('data-filter'); $grid.isotope(); }); // use value of search field to filter var $quicksearch = $('#quicksearch').keyup( debounce( function() { qsRegex = new RegExp( $quicksearch.val(), 'gi' ); $grid.isotope(); }) ); // change is-checked class on buttons $('.button-group').each( function( i, buttonGroup ) { var $buttonGroup = $( buttonGroup ); $buttonGroup.on( 'click', 'button', function() { $buttonGroup.find('.is-checked').removeClass('is-checked'); $( this ).addClass('is-checked'); }); }); // debounce so filtering doesn't happen every millisecond function debounce( fn, threshold ) { var timeout; threshold = threshold || 100; return function debounced() { clearTimeout( timeout ); var args = arguments; var _this = this; function delayed() { fn.apply( _this, args ); } timeout = setTimeout( delayed, threshold ); }; }