This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const element = document.querySelector(".element"); | |
| const hasHorizontalScrollbar = element.scrollWidth > element.clientWidth; | |
| const hasVerticalScrollbar = element.scrollHeight > element.clientHeight; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function listenWindowResize() { | |
| let width = window.innerWidth; | |
| let allowReset = true; | |
| window.addEventListener("resize", () => { | |
| if (width === window.innerWidth) { | |
| return; | |
| } | |
| width = window.innerWidth; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let lastScrollY = scrollY || 0; | |
| window.addEventListener("scroll", () => { | |
| if (scrollY > lastScrollY) { | |
| console.log("down scroll"); | |
| } else if (scrollY < lastScrollY) { | |
| console.log("up scroll"); | |
| } | |
| lastScrollY = scrollY; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div role="group" aria-labelledby="groupLabel"> | |
| <span id="groupLabel">Heading</span> | |
| <input type="text"> | |
| <input type="text"> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (value.startsWith('34') || value.startsWith('37')) { | |
| return 'americanExpress' | |
| } | |
| if (value.startsWith('62')) { | |
| return 'chinaUnionPay' | |
| } | |
| if (value.startsWith('6011') || value.startsWith('65')) { | |
| return 'DiscoverCard' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function loadImage(src) { | |
| return new Promise((resolve, reject) => { | |
| const image = document.createElement('img') | |
| image.src = src | |
| image.onload = () => resolve(image) | |
| image.onerror = () => reject(new Error(`Load image error: ${src}`)) | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg | |
| aria-labelledby='logoLabel' | |
| > | |
| <title id='logoLabel'>Brand logo</title> | |
| ... | |
| </svg> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .element-child { | |
| color: black; | |
| } | |
| @-moz-document url-prefix() { | |
| .element-child { | |
| color: pink; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (screen && screen.orientation !== null) { | |
| window.screen.orientation.onchange = () => { | |
| switch (screen.orientation.type) { | |
| case "landscape-primary": | |
| console.log("That looks good."); | |
| break; | |
| case "landscape-secondary": | |
| console.log("Mmmh… the screen is upside down!"); | |
| break; | |
| case "portrait-secondary": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg className={s.icon} width="100" height="50" version="1.1" xmlns="http://www.w3.org/2000/svg"> | |
| <defs> | |
| <linearGradient id='MyGradient'> | |
| <stop offset='5%' stopColor='#F60' /> | |
| <stop offset='95%' stopColor='#FF6' /> | |
| </linearGradient> | |
| </defs> | |
| <rect width='100' height='50' fill='url(#MyGradient)' /> | |
| </svg> |
NewerOlder