Скрыть Объявление

TWD: ZOMBIE TALES

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

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


Вы здесь » TWD: ZOMBIE TALES » Второй форум » Карта Лонг-Айленда


Карта Лонг-Айленда

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

1

[html]
<html>
<head>
  <title>Hello World</title>
</head>
<body>

First name: <input id="first_name">
Last name: <input id="last_name">
<button id="say">Say hi!</button>

<hr>
<div id="result"></div>

<script>
function say_hi() {
    var fname = document.getElementById('first_name').value;
    var lname = document.getElementById('last_name').value;

    var html = 'Hello <b>' + fname + '</b> ' + lname;

    document.getElementById('result').innerHTML = html;
}

document.getElementById('say').addEventListener('click', say_hi);
</script>

</body>
</html>[/html]

0

2

[html]<script>
var variants = document.querySelectorAll('.res');
function rand() {
var index = Math.floor(Math.random()*variants.length);
for (var i = 0; i < variants.length; ++i) {
   var div = variants[i];
   if (i === index) {
    div.classList.add('visible');
   } else {
    div.classList.remove('visible');
   }
}
}

function copytext(el) {
    var $tmp = $("<textarea>");
    $("body").append($tmp);
    $tmp.val($(el).text()).select();
    document.execCommand("copy");
    $tmp.remove();
}

</script>

<style>
.res {display: none;}
.res.visible {display: block;}
</style>

<div class="sudba" id="sudbaRandCont">
  <button id="randing" onclick="rand()">Узнать судьбу</button>
  <div class="res">
<h1>Первый</h1>
<p>Первый текст</p>
  </div>
  <div class="res">
<h1>Второй</h1>
<p>Второй текст</p>
  </div>
  <div class="res">
<h1>Третий</h1>
<p>Третий текст</p>
  </div>
  <div class="res">
<h1>Четвертый</h1>
<p>Четвертый текст</p>
  </div>
  <div  class="res">
<h1>Пятый</h1>
<p>Пятый текст</p>
  </div>
</div>

<button onclick="copytext('.res.visible');">Добавить текст в буфер обмена</button>

[/html]

0

3

[html]<progress id='p0' value='15' max='100'></progress>[/html]

0

4

[html]
<!DOCTYPE html>
<html>
<head>
<title>Chronology</title>
<link href="http://forumstatic.ru/files/0019/3a/16/25430.css" rel="stylesheet">
</head>
<body>
<div id="geroitable">
<table id="myTable">
<thead><tr>
<th onclick="sortTable(0)">⇕ Персонаж</th>
<th onclick="sortTable(1)">⇕ Место</th>
<th onclick="sortTable(2)">⇕ Здоровье</th>
<th onclick="sortTable(3)">⇕ Сила</th>
</tr></thead>
    <tbody>
    <tr>
<td>Рик</td>
<td>Гринтаун</td>
<td><progress id='p0' value='15' max='100'></progress></td>
<td><progress id='p0' value='15' max='100'></progress></td>
    </tr>
    <tr>
<td>Ниган</td>
<td>Редтаун</td>
<td><progress id='p0' value='85' max='100'></progress></td>
<td><progress id='p0' value='95' max='100'></progress></td>
    </tr>
    </tbody>
</table>
<div id="tablepoisk"><input type="text" id="filter" />
<input type="button" id="btnFilter" value="Найти" /></div>
</div>

<script src="http://forumstatic.ru/files/0019/3a/16/28461.js"></script>
</body>
</html>[/html]

0

5

[html]<progress id='health' value='9' max='10'></progress>
<progress id='power' value='5' max='10'></progress>[/html]

0


Вы здесь » TWD: ZOMBIE TALES » Второй форум » Карта Лонг-Айленда


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