Found 10528 bookmarks
Newest
Dialog (Modal) - Headless UI
Dialog (Modal) - Headless UI
Completely unstyled, fully accessible UI components, designed to integrate beautifully with Tailwind CSS.
·headlessui.dev·
Dialog (Modal) - Headless UI
lightGallery
lightGallery
A lightweight, modular, JavaScript image and video lightbox gallery plugin. Available for React.js, Vue.js, Angular, and TypeScript.
·lightgalleryjs.com·
lightGallery
How to use videos with alpha transparency on the web
How to use videos with alpha transparency on the web
I think it’s a little known fact that you can use video with alpha transparency on the web. Perhaps because the use cases are few. However, with UI I have been prototyping lately, I have found great utility in it when I want a fancy animation that I can’t easily re-create with SVG. The sort...
·benfrain.com·
How to use videos with alpha transparency on the web
It's been some time since I started writing posts and articles about programming and related. Since the start, I've always invested time in SEO, over time, I have integrated a system that now works for me. This is an explanation how I did that.
It's been some time since I started writing posts and articles about programming and related. Since the start, I've always invested time in SEO, over time, I have integrated a system that now works for me. This is an explanation how I did that.
·elian.codes·
It's been some time since I started writing posts and articles about programming and related. Since the start, I've always invested time in SEO, over time, I have integrated a system that now works for me. This is an explanation how I did that.
How to Style an Audio Element
How to Style an Audio Element
In this tutorial, we'll check how we can style audio elements with their pseudo-element selectors, and how we can style them completely from scratch.
·blog.shahednasser.com·
How to Style an Audio Element
Vime
Vime
A customizable, extensible, accessible and framework agnostic media player.
·vimejs.com·
Vime
Magical SVG Techniques — Smashing Magazine
Magical SVG Techniques — Smashing Magazine
Smart SVG techniques, from generative SVG grids to SVG paths with masks, grainy SVG gradients, cut-out effects and fractional SVG stars. Let’s look at some magical SVG techniques that you can use right away.
·smashingmagazine.com·
Magical SVG Techniques — Smashing Magazine
Waiting for multiple all API responses to complete with the vanilla JS Promise.all() method
Waiting for multiple all API responses to complete with the vanilla JS Promise.all() method
In yesterday’s article, I mentioned that I recently worked on a pretty big vanilla JS app. On some pages, we needed to wait for multiple API requests to complete before rendering content. Today, I want to show you a simple way to do that with the Promise.all() method. How I learned this As I was trying to figure this out, I discovered that Steve Griffith (who’s video on composition vs.
·gomakethings.com·
Waiting for multiple all API responses to complete with the vanilla JS Promise.all() method
date range filter Code Example
date range filter Code Example
var startDate = new Date("2015-08-04"); var endDate = new Date("2015-08-12"); var resultProductData = product_data.filter(a = { var date = new Date(a.ProductHits); return (date = startDate && date = endDate); }); console.log(resultProductData)
·codegrepper.com·
date range filter Code Example
How can I fetch an array of URLs with Promise.all?
How can I fetch an array of URLs with Promise.all?
If I have an array of urls: var urls = ['1.txt', '2.txt', '3.txt']; // these text files contain "one", "two", "three", respectively. And I want to build an object that looks like this: var text ...
·stackoverflow.com·
How can I fetch an array of URLs with Promise.all?
Javascript. Filter data
Javascript. Filter data
I have a stupid question. I need to filter data from variable. I have a var a: var a = "Name: Kevin, DoB: 16 May 1987, Hobby: Bikes" Now i want to assign to var B the result from var a but only ...
·stackoverflow.com·
Javascript. Filter data