Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                
    <div class="container">
        <article>
            <header>
                <h1>Скорпион</h1>
            </header>
            <img src="" alt="">
            <section class="">
                <h2>Описание</h2>
                <p>Скорпион — ранее Жёлтый Ниндзя-Призрак, который мстил убийце своей семьи — Саб-Зиро, а также главный
                    солдат великого
                    Адиля, однако после воскрешения снова стал человеком и заключил перемирие с младшим Саб-Зиро, узнав
                    от
                    него правду об
                    убийстве своих родных. Являлся заклятым врагом Саб-Зиро старшего из-за того, что был им убит.
                    Поначалу
                    служил Шан Цзуну
                    и Шао Кану, однако основной его целью является правление империей при помощи мертвецов, чему
                    посодействовала его смерть
                    и попадание в Мир потерянных душ. Скорпион одет в чёрно-жёлтый костюм ниндзя, его маска скрывала
                    голый
                    (до 2002) череп,
                    оружие скорпиона — это кунай на цепи (в играх 1992—2006 г. на верёвке), которым он притягивает к
                    себе
                    противников. Когда
                    гарпун пронзает противника, Скорпион выкрикивает: «Иди сюда!» (англ. Get over here! или Come here!,
                    один
                    из этих двух
                    выкриков выбирается случайно) и дёргает цепь на себя, тем самым притягивая противника вплотную к
                    себе,
                    чтобы нанести
                    тому несколько ударов, пока противник не оправился. В игре Mortal Kombat: Shaolin Monks Скорпион
                    использует гарпун и как
                    хлыст. Скорпион также обладает силой огня (в противовес Саб-Зиро, который управляет силой льда).</p>
            </section>
            <section  class="hide-section">
                <h2>Биография Ханзо Хасаши</h2>
                <p>Скорпион — это кодовое имя Хандзо Хасаши, воина клана[1] ниндзя Сирай Рю. Он собирался покинуть клан
                    и
                    посвятить жизнь
                    своей жене и сыну, однако старейшины клана уговорили его выполнить последнее задание: достать для
                    колдуна Куан Чи карту
                    из Храма Элементов. В храме он встретился с Саб-Зиро (старшим), воином клана Лин Куэй, которого (как
                    позже выяснится)
                    нанял тот же Куан Чи. Двое воинов сражались за карту, и Саб-Зиро вышел победителем. Саб-Зиро убил
                    Хандзо
                    и забрал карту.</p>
            </section>
            <section  class="hide-section">
                <h2>Причина вражды между Скорпионом и Куан Чи</h2>
                <p>Причиной вражды между Скорпионом и Куан Чи послужил момент, когда Скорпион узнаёт правду от младшего
                    Саб-Зиро (Mortal
                    Kombat 4 концовка Саб-Зиро, где сам Саб-Зиро признается, выдавая себя за старшего брата Скорпиону,
                    что
                    он убил
                    Скорпиона, но настоящий убийца его семьи и клана все еще свободен и тогда появляется Куан-чи и
                    говорит,
                    что настоящий
                    убийца он. и Mortal Kombat X, где сюжет изменен, как написано далее). Последний приглашает Хандзо
                    посмотреть встроенную
                    память киборга Сектора, в которой Куан Чи рассказывает Сектору о настоящей причине смерти Скорпиона
                    и
                    его семьи.</p>
            </section>
            <footer class="button-footer">
                <button class="left">Left</button>
                <button class="right">Right</button>
            </footer>
        </article>
    </div>
              
            
!

CSS

              
                * {
    margin: 0;
}

html, body {
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 1.8rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    text-align: center;
}

a {
    color: #3f8efc;
}

.container {
    max-width: 1000px;
    margin: 30px auto;
}

.button-footer {
    display: none;
}

button {
    font-size:  40px;
    padding: 20px;
}

@media screen and (max-width: 800px) {
    .button-footer {
        display: block;
    }
    .hide-section {
        display: none;
    }
}
              
            
!

JS

              
                document.querySelector('.left').addEventListener('click', articleLeft);
document.querySelector('.right').addEventListener('click', articleRight);

let section = document.querySelectorAll('article section');
let sectionCount = section.length; // !!!
let hash = 0; // //#

if (window.location.hash) {
    hash = window.location.hash; //#2
    hash = +hash.replace('#', '');
    showSection();
}

function articleLeft() {
    if (hash - 1 >= 0) {
        hash--;
    }
    else {
        hash = sectionCount - 1;
    }
    window.location.hash = hash;
    showSection();
}

function articleRight() {
    if (hash + 1 < sectionCount) {
        hash++;
    }
    else {
        hash = 0;
    }
    window.location.hash = hash;
    showSection();
}

function showSection() {
    section.forEach(elem => {
        elem.classList.add('hide-section');
    });
    section[hash].classList.remove('hide-section');
}



              
            
!
999px

Console