Домашняя работа. Урок 15

jQuery

Банер для выполнения домашней работы!

    
------------------------------------------------------------------------------------------------------------------------
HTML КОД:

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Домашняя работа. Урок 15</title>
</head>
<body>
    <header></header>
    <main>
        <h1>Домашняя работа. Урок 15</h1>

        <div style="background-color: #87CEEB; align-items: center; text-align: center; border: #483D8B solid 5px;">
            <img src="../img/jQuery.jpg" alt="jQuery" style="margin-top: 50px">
            <p style="font-size: 40px;">Банер для выполнения домашней работы!</p>
        </div>
        
    </main>
    <footer></footer>
    <script src="../jquery-4.0.0.js.js"></script>
    <script src="js/index.js"></script>
</body>
</html>

------------------------------------------------------------------------------------------------------------------------
JS КОД

let i = jQuery('div img');
let j = jQuery('div p');

$(function () {
    i.hide(3000).show(6000);
});

$(function () {
    j.fadeOut(3000).fadeIn(6000);
});