Благодарим за выбор нашего сервиса!
Коды
Сообщений 1 страница 11 из 11
Поделиться32024-10-04 21:42:22
border-radius: 10px;
-webkit-border-radius:10px;
-khtml-border-radius:10px;
-moz-border-radius:10px;
-o-border-radius:10px;
Поделиться42024-10-04 21:42:44
/* рамки для аватара */
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;
}
Поделиться62024-10-30 16:32:18
Поделиться72024-10-30 16:35:43
Поделиться82024-10-30 16:41:25
Поделиться102024-11-13 23:27:50
[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]
пригодится для конкурсов
Поделиться112024-11-14 21:36:16
<!-- убрать кнопку пожаловаться -->
<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>
<!--- конец --->