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

Organizations

@KMUGradeServerProject @UCIUROP2015 @KMUGradeServer
Block or Report

Block or report cs09g

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  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) {