For Homebrew v2.6.x and below:
brew cask install ngrokFor Homebrew v2.7.x and above:
| img.bg { | |
| position: fixed; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| width: 100vh; | |
| height: 100vh; | |
| z-index: -2; | |
| clip-path: circle(0% at center); | |
| transition: clip-path 0.5s cubic-bezier(0.65, 0.05, 0.36, 1); |
| const convertToKebabCase = (string) => { | |
| return string.replace(/\s+/g, '-').toLowerCase(); | |
| } |
| /* bling.js */ | |
| window.$ = document.querySelector.bind(document); | |
| window.$$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
| NodeList.prototype.__proto__ = Array.prototype; | |
| NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |