Skip to content
View cs09g's full-sized avatar
🏠
Working from home
🏠
Working from home

Organizations

@KMUGradeServerProject @UCIUROP2015 @KMUGradeServer

Block or report cs09g

Report abuse

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

Report abuse

Pinned Loading

  1. openlayers openlayers Public

    Forked from openlayers/openlayers

    OpenLayers

    JavaScript

  2. mapbox-gl-js mapbox-gl-js Public

    Forked from mapbox/mapbox-gl-js

    Interactive, thoroughly customizable maps in the browser, powered by vector tiles and WebGL

    JavaScript

  3. morsecode morsecode Public

    Morse code encoder / decoder including Korean letters

    JavaScript 1 1

  4. instagram-js instagram-js Public

    Easy instagram API for javascript - Deprecated for now

    JavaScript 3

  5. Mouse/Touch Event Simulation Mouse/Touch Event Simulation
    1
    /**
    2
     * @desc It triggers mouse event.
    3
     * @param {HTMLElement} element target DOM element
    4
     * @param {string} type type of event
    5
     * @param {number} x clientX of event
  6. ant path with Mapbox-gl-js https://j... ant path with Mapbox-gl-js https://jsfiddle.net/cs09g/vtmLd6g9/
    1
    let dash = [3, 3]; // your input; dash you want to animate
    2
    let speed = 0.5; // your input; speed rate
    3
    let dashArraySeq = createDashArraySeq(dash, speed); // `dashArraySeq` contains dash arrays you can use
    4
    
                  
    5
    function createDashArraySeq(dash, speed = 1) {