Skip to content
View hoox's full-sized avatar
Block or Report

Block or report hoox

Report abuse

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

Report abuse

Pinned Loading

  1. Battery Details Battery Details
    1
    navigator.getBattery().then(function(battery){
    2
    	console.log(battery.level);
    3
    	console.log(battery.charging);
    4
    });
  2. Ambient Light API - "Device Light" E... Ambient Light API - "Device Light" Event Listner
    1
    window.addEventListener('devicelight', function(event) {
    2
        var media = document.querySelectorAll("img");
    3
        for (var i=0;i<media.length;i++) {
    4
            media[i].style.opacity = event.value / 100;
    5
        }
  3. yarn-workspaces-webpack-react-starter yarn-workspaces-webpack-react-starter Public

    A Yarn Workspaces + Webpack + React Starter Kit 🔰

    JavaScript

  4. yarn-workspaces-webpack-typescript-preact-starter yarn-workspaces-webpack-typescript-preact-starter Public

    A Yarn Workspaces + Webpack + TypeScript + Preact Starter Kit 🔰

    JavaScript 1