Skip to content
View ppscvalentin's full-sized avatar

Organizations

@eaudeweb

Block or report ppscvalentin

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. thehumaninterface/dance-cloud thehumaninterface/dance-cloud Public

    Platforma dansului contemporan românesc

    HTML

  2. Screen reader Screen reader
    1
    /**
    2
     * Visually hidden, but accessible
    3
     * https://css-tricks.com/places-its-tempting-to-use-display-none-but-dont/ 
    4
     */
    5
    .visuallyhidden { 
  3. debounce, throttle debounce, throttle
    1
    // https://davidwalsh.name/function-debounce
    2
    debounce = function(func, wait, immediate) {
    3
    	var timeout;
    4
    	return function() {
    5
    		var context = this, args = arguments;