ВРЕМЯ В ИГРЕ:
декабрь 4154 г.

01.12. открытие форума
Рейтинг форумов Forum-top.ru
Рейтинг Ролевых Ресурсов - RPG TOP

Нефритовая пыль

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Нефритовая пыль » Тайный орден » Коды


Коды

Сообщений 1 страница 11 из 11

1

Благодарим за выбор нашего сервиса!

0

2

рппп

0

3

border-radius: 10px;
    -webkit-border-radius:10px;
    -khtml-border-radius:10px;
    -moz-border-radius:10px;
    -o-border-radius:10px;

0

4

/* рамки для аватара */

li.pa-avatar item2 {width:180px; height: 180px;}

pa-avatar item2 {    width: 180px;
    height: 180px;}

.punbb .post .post-author {
    float: left;
    width: 205px;
    margin-left: 25px;
       background: url() top center no-repeat, url() bottom no-repeat, url() center repeat-y;
    padding: 3px 9px 9px 9px!important;
    font-family: Trebuchet MS;
    padding: 5px;
font-size: 110%;
    text-align: center;}

.punbb .post .post-author a {text-transform: uppercase;
font-weight: bolder;

}

0

5

555

0

6

Свернутый текст

0

7

полоски

0

8

верх-низ

0

9

https://i.imgur.com/NcQP5sG.jpeg

0

10

[html]<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Распределение студентов по комнатам</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 20px;
        }
       
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: center;
        }

        th {
            background-color: #4CAF50;
            color: white;
        }

        .assign-button {
            background-color: #36244e;
            color: white;
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .assign-button:hover {
            background-color: #161511;
        }
    </style>
</head>
<body>

<h1>Распределение студентов по комнатам</h1>

<button class="assign-button" onclick="assignStudents()">Распределить студентов по комнатам</button>

<table>
    <thead>
        <tr>
            <th>Комната</th>
            <th>Студент 1</th>
            <th>Студент 2</th>
        </tr>
    </thead>
    <tbody id="room-table">
        <!-- Здесь будут отображены комнаты с распределенными студентами -->
    </tbody>
</table>

<script>
    // Список студентов
    const students = [
        'Алексей', 'Борис', 'Владимир', 'Георгий', 'Дмитрий', 'Евгений',
        'Женя', 'Игорь', 'Кирилл', 'Леонид', 'Максим', 'Никита',
        'Олег', 'Павел', 'Роман', 'Сергей', 'Тимур', 'Федор',
        'Юрий', 'Ярослав', 'Антон', 'Василий', 'Геннадий', 'Егор'
    ];

    // Распределение студентов по комнатам
    function assignStudents() {
        const shuffledStudents = shuffleArray([...students]);
        const roomTable = document.getElementById('room-table');
        roomTable.innerHTML = ''; // Очищаем таблицу перед новым распределением

        // Заполняем таблицу комнатами
        let roomNumber = 1;
        for (let i = 0; i < shuffledStudents.length; i += 2) {
            const student1 = shuffledStudents[i];
            const student2 = shuffledStudents[i + 1] || 'Нет второго студента';

            // Создаем строку таблицы для комнаты
            const row = document.createElement('tr');
            row.innerHTML = `
                <td>Комната ${roomNumber}</td>
                <td>${student1}</td>
                <td>${student2}</td>
            `;
            roomTable.appendChild(row);

            roomNumber++;
        }
    }

    // Функция для перемешивания массива студентов случайным образом
    function shuffleArray(array) {
        for (let i = array.length - 1; i > 0; i--) {
            const j = Math.floor(Math.random() * (i + 1));
            [array[i], array[j]] = [array[j], array[i]];
        }
        return array;
    }
</script>

</body>

[/html]

пригодится для конкурсов

0

11

<!-- убрать кнопку пожаловаться -->
<script type="text/javascript">
RusffCore.sets.show_reportBtn = 0;
RusffCore.sets.files.button = false;
</script>

<!--- Скрыть rss-atom --->
<style type="text/css">
.punbb .modmenu .container span {display: none;}
</style>
<!--- конец --->

0


Вы здесь » Нефритовая пыль » Тайный орден » Коды


Рейтинг форумов | Создать форум бесплатно