Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5165 links 

page 1 / 14

Liste des liens

263 results tagged javascript x
slide-show
2024-05-14 23:51 - permalink -

Un slide-show horizontal et prêt pour le plein écran

css javascript slideshow
- https://stephen.band/slide-show/
Prendre des photos avec getUserMedia() - Référence Web API | MDN
2023-06-12 2:51 - permalink -
javascript navigateur photos script
- https://developer.mozilla.org/fr/docs/Web/API/Media_Capture_and_Streams_API/Taking_still_photos
Lodash - Alsacreations
2023-05-24 2:30 - permalink -

Lodash est une bibliothèque JavaScript réunissant des fonctions bien pratiques pour manipuler des données, là où peuvent manquer des instructions natives :

  • pour des tableaux, objets, chaînes de texte (notamment des itérations, du clonage)
  • pour tester et manipuler des valeurs
  • pour créer des fonctions composites

Il ne s'agit pas de manipuler le DOM (HTML) comme d'autres peuvent le faire (jQuery) mais de se concentrer sur les structures du langage.

javascript outils
- https://www.alsacreations.com/outils/lire/1746-Lodash.html
parallax/jsPDF: Client-side JavaScript PDF generation for everyone. - kalvn's links
2023-05-4 12:3 - permalink -

Via sebsauvage

javascript pdf
- https://links.kalvn.net/shaare/6N4n7Q
:zap: Simple and easy to use lightbox script written in pure JavaScript | JsRepos
2022-04-2 1:35 - permalink -

Un caroussel associé à une lightbox.

caroussel javascript lightbox
- https://jsrepos.com/lib/feimosi-baguetteBox-js-javascript-modals-and-popups
Système de carrousel accessible avec ARIA et en Vanilla JS - Van11y
2022-03-25 19:34 - permalink -

Un autre carroussel accessible

accessibilité carroussel javascript
- https://van11y.net/fr/carrousel-accessible/
Un carrousel accessible et responsive en Vanilla JS - Agence web Adilade
2022-03-25 19:27 - permalink -

Un carroussel qui respecte l'accessibilité. Pas évident en fait

accessibilité carroussel javascript
- https://www.adilade.fr/blog/carrousel-accessible-responsive-vanillajs/
MUTOS - le hollandais volant
2022-02-6 2:5 - permalink -

Super. Et comme toujours, c'est super propre comme code. Aucun tracker contrairement aux autres versions existantes...

Par contre, la licence n'est pas indiquée. On peut l'utiliser ?

code copains développement javascript jeux web
- https://lehollandaisvolant.net/tout/tools/mutos/
Wesley Aptekar-Cassels | Reasons to avoid Javascript CDNs - Liens en vrac de sebsauvage
2021-12-13 11:48 - permalink -

Ça n'a jamais servi à rien sauf à tracer les utilisateurs plus facilement...

cdn javascript vie-privée
- https://sebsauvage.net/links/?riTwlQ
Link Lock - Password-protect links
2021-12-1 16:20 - permalink -

Ajouter un mot de passe à n'importe quelle url.

html javascript outils password
- https://jstrieb.github.io/link-lock/create/
GitHub - jstrieb/urlpages: Create and view web pages stored entirely in the URL
2021-12-1 16:19 - permalink -

Encoder une page dans l'url en base64, à la manière de zerobin.

css html javascript outils
- https://github.com/jstrieb/urlpages
Developer Tools secrets that shouldn’t be secrets | Christian Heilmann
2021-11-15 9:27 - permalink -

via Timo

console javascript tricks tutoriels
- https://christianheilmann.com/2021/11/01/developer-tools-secrets-that-shouldnt-be-secrets/
CodePen Home File and Directory Drag-and-drop for Firefox and Chrome - Codepen - Le Hollandais Volant
2021-10-12 15:10 - permalink -
dossier javascript upload
- https://lehollandaisvolant.net/?mode=links&id=20211011183334
Swipey image grids.
2021-04-15 8:40 - permalink -

Des images dans du svg...

animation css images javascript svg
- https://www.cassie.codes/posts/swipey-image-grids/
La synthèse vocale en JS: SILENCE DANS LA BIBLIOTHEQUE ! - Warrior du Dimanche
2021-04-5 19:53 - permalink -

Je relais mais j'ai peu d'espoir...
Peut-être du côté de Mozilla ???

javascript librairie voix
- http://warriordudimanche.net/article1497/lenfance-codeur-synthese-vocale-js
242 Favorite JavaScript Utilities in single line of code
2021-03-29 8:44 - permalink -

JS​

This is going to be useful: 242 Favorite JavaScript Utilities
in single line of code! No more! by Phuoc Nguyen (@nghuuphuoc@twitter.com)
https://1loc.dev/​

code javascript utilitaire
- https://mastodon.design/@stephaniewalter/105971676135455296
Files · master · InterHop / Goupile · GitLab
2021-03-5 23:32 - permalink -

Le dépôt git d'InterHop.

git interhop javascript logiciel-libre Médecine
- https://framagit.org/interhop/goupile/-/tree/master
String.prototype.includes() - JavaScript | MDN
2021-02-28 1:35 - permalink -
if (!String.prototype.includes) {
  String.prototype.includes = function(search, start) {
    'use strict';

    if (search instanceof RegExp) {
      throw TypeError('first argument must not be a RegExp');
    }
    if (start === undefined) { start = 0; }
    return this.indexOf(search, start) !== -1;
  };
}

const str = "Être ou ne pas être, telle est la question.";

console.log(str.includes("Être"));       // true
console.log(str.includes("question"));   // true
console.log(str.includes("pléonasme"));  // false
console.log(str.includes("Être", 1));    // false
console.log(str.includes("ÊTRE"));       // false
console.log(str.includes(""));       // true

Voir aussi

  • Array.prototype.includes()
  • TypedArray.prototype.includes()
  • String.prototype.indexOf()
  • String.prototype.lastIndexOf()
  • String.prototype.startsWith()
  • String.prototype.endsWith()
caractères fonction javascript
- https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Global_Objects/String/includes#syntaxe
GitHub - mermaid-js/mermaid: Generation of diagram and flowchart from text in a similar manner as markdown
2020-12-30 11:17 - permalink -

Mermaid is a Javascript based diagramming and charting tool that uses Markdown-inspired text definitions and a renderer to create and modify complex diagrams. The main purpose of Mermaid is to help documentation catch up with development.

Doc-Rot is a Catch-22 that Mermaid helps to solve.

Diagramming and documentation costs precious developer time and gets outdated quickly. But not having diagrams or docs ruins productivity and hurts organizational learning.
Mermaid addresses this problem by cutting the time, effort and tooling that is required to create modifiable diagrams and charts, for smarter and more reusable content. The text definitions for Mermaid diagrams allows for it to be updated easily, it can also be made part of production scripts (and other pieces of code). So less time needs to be spent on documenting, as a separate and laborious task.

diagrammes javascript markdown outils
- https://github.com/mermaid-js/mermaid
The Modern JavaScript Tutorial
2020-12-8 10:12 - permalink -

À lire.
Le design du site est léché. J'aime beaucoup.

javascript tutoriels
- https://javascript.info/
page 1 / 14


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2