Pesquisar neste blog

13/03/2021

JQuery em HTML

Arquivo: entendendoJQuery.html
<!DOCTYPE html>
<html>

<head>
    <meta charset='UTF-8'>
    <title>Entendendo jQuery</title>
    <link rel='stylesheet' href='css/estilo.css'>
    <script src="js/jquery.js"></script>
</head>

<body class="conteudo exercicio">
    <h1>Entendendo jQuery</h1>
    <div>1</div>
    <div>2</div>

    <script>
        //conjunto de seletores 'div'
        //$('div').hide(5000) // tempo de processo para esconder o processo
        //$('div').hide(5000).show(7000)//escondendo e aparecendo por 5 e 7 segundos
        $('div').hide(5000).show(5000).fadeOut(7000)
        console.log($('div').get(1));
        console.log($.isEmptyObject({nome: null}));
        console.log(jQuery.inArray(3, [123]));// está dentro do array o número 1, 2, 3 ?
        
        //função para colocar uma propriedade css
        $.fn.fundoVerde = function(){
            this.css('background-color','green')
            return this // retorna o próprio objeto
        }

        $('body').fundoVerde().fadeOut(7000)
    </script>
</body>


Arquivo: estilo.css

@font-face {
    font-family'Oswald';
    srcurl('../fonts/Oswald-Regular.ttf'format('truetype');
}

* {
    font-family'Oswald'sans-serif;
}

html {
    height100%;
}

body {
    margin0;
    background-color#0D262D;
    color#fff;
    height100%;
}

table {
    border-collapsecollapse;
}

tr {
    border-bottomsolid 1px white;
}

td {
    font-size1.6em;
    padding10px;
}

li {
    font-size1.6em;
}

.conteudo {
    displayflex;
    flex-directioncolumn;
    align-itemscenter;
    min-height100%;
}

.exercicio div {
    font-size1.8em;
    bordersolid 5px #fff;
    padding0px 40px;
    margin10px;
}

.exercicio div:nth-of-type(1) {
    background-colordarkgoldenrod;
}

.exercicio div:nth-of-type(2) {
    background-colorcrimson;
}

.exercicio div:nth-of-type(3) {
    background-colordarkcyan;
}

.exercicio div:nth-of-type(4) {
    background-colordarkorchid;
}

.exercicio div:nth-of-type(5) {
    background-colordodgerblue;
}

.exercicio div:nth-of-type(6) {
    background-colorsalmon;
}

.exercicio .destaque {
    bordersolid 10px greenyellow;
    colorgreenyellow;
    font-weightbold;
}







Nenhum comentário: