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.

5166 links 

page 2 / 4

Liste des liens

74 results tagged html x
Luc Didry / html5-presentations · GitLab
2020-04-29 18:28 - permalink -

Des présentations en html

html présentation
- https://framagit.org/luc/html5-presentations
Créer un background vidéo fullscreen avec HTML5
2020-03-16 2:8 - permalink -
css html tutoriels vidéos
- https://la-cascade.io/video-en-background/
Paged.js – Paged Media
2019-11-19 23:45 - 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 !
2019-11-6 12:31 - 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
2019-09-24 10:43 - 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.
2019-04-24 12:1 - 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
2019-03-20 15:17 - 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
2019-02-12 9:45 - 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
2019-02-9 21:48 - 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
2019-02-5 0:7 - permalink -

Pour des onglets simples

css html javascript
- https://www.w3schools.com/howto/howto_js_tabs.asp
Vue.js
2018-12-12 23:10 - permalink -

À tester

developpement html javascript
- https://vuejs.org/
CodePen - "Random" color harmonies
2018-12-4 23:19 - permalink -

Pas mal. Pour générer des palettes de couleurs harmonisées.

couleurs html javascript
- https://codepen.io/meodai/full/RerqjG/
Sélecteur de couleurs - le hollandais volant
2018-11-12 13:41 - permalink -

Un nouvel outil bien pratique de Timo.
Merci l'ami.

couleurs css html outils web
- https://lehollandaisvolant.net/tout/tools/color/
Créer une navigation mobile sans JavaScript | Vincent Dubroeucq
2018-10-3 21:18 - permalink -

Bon petit tuto pour un menu adaptatif minimaliste mais qui fait le job. Et sans javascript.

css html menu
- https://vincentdubroeucq.com/navigation-mobile-sans-js/
Tabulator
2018-09-28 17:44 - permalink -

Pas mal. Via Yome.

css html javascript table
- http://tabulator.info/
Supplément latin-1 — Table de caractères Unicode®
2018-09-11 23:41 - permalink -

Table de correspondance entre élément unicode et html. Pratique.

html table unicode UTF-8
- https://unicode-table.com/fr/#latin-1-supplement
Tout savoir sur la gestion SEO d'un site multilingue avec hreflang
2018-08-13 16:43 - permalink -

Voir si le plugin multilangue de PluXml l'utilise de façon correcte

html PluXml SEO
- https://www.lafabriquedunet.fr/seo/articles/site-multilingue-hreflang/
Introduction à WAI ARIA (traduction) · Les intégristes
2018-05-29 13:44 - permalink -
accessibilité ARIA html web
- https://www.lesintegristes.net/2008/12/09/introduction-a-wai-aria-traduction/
Cure53 – Fine penetration tests for fine websites
2018-03-21 15:9 - permalink -
application css html svg sécurité web
- https://cure53.de/
Homepage - tabler.github.io - a responsive, flat and full featured admin template
2018-03-14 17:34 - permalink -

https://github.com/tabler/tabler

css free html templates
- https://tabler.github.io/tabler/
page 2 / 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 - Mastodon 1 - Mastodon 2