Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • ► Play Videos
  • 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.

4764 links 

page 1 / 4

Liste des liens

63 results tagged html x
html2pdf/example12.php at master · spipu/html2pdf · GitHub
Wed 24 Feb 2021 11:13:57 AM CET - permalink -

Pour remplacer les puces par des images (ou changer le style de la puce), il faut placer la règle css dans la balise ul, sinon, dans la balise  <style type="text/css">, ça ne fonctionne pas.

astuce html html2pdf pdf
- - https://github.com/spipu/html2pdf/blob/master/examples/res/example12.php
JSON Resume
Sat 13 Feb 2021 09:11:07 PM CET - permalink -

Un cv en JSON. Plusieurs thèmes possible.

CV html json npm pdf
- - https://jsonresume.org/
How to Favicon in 2021: Six files that fit most needs — Martian Chronicles, Evil Martians’ team blog
Thu 24 Dec 2020 10:36:27 AM CET - permalink -

Extremely short version

Instead of serving dozens of icons, all you need is just five icons and one JSON file.

In your HTML, for the browser:

<link rel="icon" href="/favicon.ico" /><!-- 32×32 -->
<link rel="icon" href="/icon.svg" type="image/svg+xml" sizes="any" />
<link rel="apple-touch-icon" href="/apple.png" /><!-- 180×180 -->
<link rel="manifest" href="/manifest.webmanifest" />

And in your web app manifest:

// manifest.webmanifest
{
"icons": [
{ "src": "/192.png", "type": "image/png", "sizes": "192x192" },
{ "src": "/512.png", "type": "image/png", "sizes": "512x512" }
]
}
favicon html
- - https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs
Brave takes brave stand against Google's plan to turn websites into ad-blocker-thwarting Web Bundles • The Register - Liens en vrac de sebsauvage
Tue 01 Sep 2020 04:41:55 PM CEST - permalink -

C'est dans la même veine que le DOM Sahdow de Facebook ?

gafam html vie-privée web
- - https://sebsauvage.net/links/?_Jm6RQ
Réalisez des présentations en quelques minutes avec Wanaprez ! - Wanadev
Tue 18 Aug 2020 01:12:11 PM CEST - permalink -

Pour réaliser des présentations simples mais propres en markdown.

html javascript libreoffice powerpoint présentation
- - https://www.wanadev.fr/214-realisez-des-presentations-en-quelques-minutes-avec-wanaprez/
Old CSS, new CSS / fuzzy notepad
Fri 17 Jul 2020 11:36:54 PM CEST - permalink -

Un peu d'histoire du web. Dire qu'on a connu ça, ça ne nous rajeunit pas...

css histoire html web
- - https://eev.ee/blog/2020/02/01/old-css-new-css/
Offline MDN Docs - Kapeli
Mon 06 Jul 2020 01:06:17 PM CEST - permalink -

Intéressant car souvent Zeal plante avec les docs MDN

css documentation html javascript svg tutoriels xslt
- - https://kapeli.com/mdn_offline
Inclusively Hiding & Styling Checkboxes and Radio Buttons — Sara Soueidan – Freelance-Front-End UI/UX Developer
Wed 24 Jun 2020 08:29:24 PM CEST - permalink -

Checkboxes and radio buttons are two common examples of interactive form elements that we desperately want to have full control over styling but we don’t. So we’ve been hacking our way around styling them by hiding said elements with CSS and visually replacing them with pseudo-elements or an SVG image — SVG, of course, being the more flexible, powerful, and accessible replacement. But an SVG image is, at the end of the day, just an image, so while it can visually replace a checkbox, it doesn’t really substitute for it — the user still needs a checkbox to interact with. So, when we attempt to hide the checkbox we want to style, we need to make sure that the checkbox remains accessible and interactive.

checkbox css html radio svg tutoriels
- - https://www.sarasoueidan.com/blog/inclusively-hiding-and-styling-checkboxes-and-radio-buttons/
GitHub - jeroenpardon/sui: a startpage for your server and / or new tab page
Tue 02 Jun 2020 02:40:44 PM CEST - permalink -

Autant le design est pas mal, autant faire appel à docker, jquery et consort pour une simple page html, c'est un peu abusé je trouve.

css html
- - https://github.com/jeroenpardon/sui
Luc Didry / html5-presentations · GitLab
Wed 29 Apr 2020 06:28:05 PM CEST - permalink -

Des présentations en html

html présentation
- - https://framagit.org/luc/html5-presentations
Créer un background vidéo fullscreen avec HTML5
Mon 16 Mar 2020 02:08:03 AM CET - permalink -
css html tutoriels vidéos
- - https://la-cascade.io/video-en-background/
Paged.js – Paged Media
Tue 19 Nov 2019 11:45:44 PM CET - permalink -

Outil pour imprimer des pages HTML.

css html impression javascript outils page
- - https://www.pagedmedia.org/paged-js/
OnCOGITE | Les Ateliers qui reconnectent les Neurones !
Wed 06 Nov 2019 12:31:07 PM CET - permalink -

Bien que le fond de ce site soit plutôt bien, la forme est à chier : un script tout moisi "empêche" la consultation du code html.
Ce script, plus quelques lignes de css, le voici :

<script id="wpcp_disable_selection" type="text/javascript">
//<![CDATA[
var image_save_msg='You Can Not Save images!';
    var no_menu_msg='Context Menu disabled!';
    var smessage = "Content is protected !!";

function disableEnterKey(e)
{
    if (e.ctrlKey){
     var key;
     if(window.event)
          key = window.event.keyCode;     //IE
     else
          key = e.which;     //firefox (97)
    //if (key != 17) alert(key);
     if (key == 97 || key == 65 || key == 67 || key == 99 || key == 88 || key == 120 || key == 26 || key == 85  || key == 86 || key == 83 || key == 43)
     {
          show_wpcp_message('You are not allowed to copy content or view source');
          return false;
     }else
        return true;
     }
}

function disable_copy(e)
{   
    var elemtype = e.target.nodeName;
    var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
    elemtype = elemtype.toUpperCase();
    var checker_IMG = '';
    if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail >= 2) {show_wpcp_message(alertMsg_IMG);return false;}
    if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED")
    {
        if (smessage !== "" && e.detail == 2)
            show_wpcp_message(smessage);

        if (isSafari)
            return true;
        else
            return false;
    }   
}
function disable_copy_ie()
{
    var elemtype = window.event.srcElement.nodeName;
    elemtype = elemtype.toUpperCase();
    if (elemtype == "IMG") {show_wpcp_message(alertMsg_IMG);return false;}
    if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED")
    {
        //alert(navigator.userAgent.indexOf('MSIE'));
            //if (smessage !== "") show_wpcp_message(smessage);
        return false;
    }
}   
function reEnable()
{
    return true;
}
document.onkeydown = disableEnterKey;
document.onselectstart = disable_copy_ie;
if(navigator.userAgent.indexOf('MSIE')==-1)
{
    document.onmousedown = disable_copy;
    document.onclick = reEnable;
}
function disableSelection(target)
{
    //For IE This code will work
    if (typeof target.onselectstart!="undefined")
    target.onselectstart = disable_copy_ie;

    //For Firefox This code will work
    else if (typeof target.style.MozUserSelect!="undefined")
    {target.style.MozUserSelect="none";}

    //All other  (ie: Opera) This code will work
    else
    target.onmousedown=function(){return false}
    target.style.cursor = "default";
}
//Calling the JS function directly just after body load
window.onload = function(){disableSelection(document.body);};
//]]>
</script>
    <script id="wpcp_disable_Right_Click" type="text/javascript">
    //<![CDATA[
    document.ondragstart = function() { return false;}
    /* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    Disable context menu on images by GreenLava Version 1.0
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
        function nocontext(e) {
           return false;
        }
        document.oncontextmenu = nocontext;
    //]]>
    </script>
<style>
.unselectable
{
-moz-user-select:none;
-webkit-user-select:none;
cursor: default;
}
html
{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
</style>
<script id="wpcp_css_disable_selection" type="text/javascript">
var e = document.getElementsByTagName('body')[0];
if(e)
{
    e.setAttribute('unselectable',on);
}
</script>

Et l'agence web le place sur tous les sites qu'elle conçoit.
C'est totalement inefficace (car facilement contournable) et je ne vois pas l'intérêt du truc. Ils facturent cette merde combien à leurs clients ?

css développement html javascript tout-moisi
- - https://oncogite.com/#ateliers
rvolz/BicBucStriim
Tue 24 Sep 2019 10:43:45 AM CEST - permalink -

BicBucStriim streams books, digital books. It fills a gap in the functionality of current NAS devices that provide access to music, videos and photos -- but not books. BicBucStriim fills this gap and provides web-based access to your e-book collection.

Calibre ebook html web
- - https://github.com/rvolz/BicBucStriim
Data Encodings and Layout - Airplanes. Cloud Computing. And Alien Abductions.
Wed 24 Apr 2019 12:01:57 PM CEST - permalink -

Un comparatif de différents systèmes d’encodage de données (JSON, XML, Avro…)
Via Timo

csv html json xml
- - https://vasters.com/blog/data-encodings-and-layout/
Eliminate Render Blocking CSS using HTTP/2 Push - Tom Butler
Wed 20 Mar 2019 03:17:09 PM CET - permalink -

Pour améliorer le chargement des pages d'un site en envoyant le css avec le html dans la même requête :

<If "%{HTTP_COOKIE} !~ /httppush=1/">

    Header add Link "</style.css>; as=style; rel=preload, </font.css>; as=style; rel=preload"

    Header add Set-Cookie "httppush=1"

</If>

Voir également l'article Forcing a browser CSS cache reload with HTTP/2 Server Push

Apache css html http2PUSH NGINX tutoriels
- - https://r.je/eliminate-render-blocking-css-pagespeed
How do you figure? | scottohara.me
Tue 12 Feb 2019 09:45:54 AM CET - permalink -

À lire

css html tutoriels
- - https://www.scottohara.me/blog/2019/01/21/how-do-you-figure.html
Les trucs qui me font détester votre site web en 2019 - Le Hollandais Volant
Sat 09 Feb 2019 09:48:50 PM CET - permalink -

100% d'accord. Malheureusement, ce n'est pas prêt de disparaître ce genre de pratiques :(

css html mauvaises-pratiques web
- - https://lehollandaisvolant.net/?d=2019/02/09/13/37/05-les-trucs-qui-me-font-detester-votre-site-web-en-2019
How To Create Tabs
Tue 05 Feb 2019 12:07:19 AM CET - permalink -

Pour des onglets simples

css html javascript
- - https://www.w3schools.com/howto/howto_js_tabs.asp
Vue.js
Wed 12 Dec 2018 11:10:16 PM CET - permalink -

À tester

developpement html javascript
- - https://vuejs.org/
page 1 / 4


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