-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcss.selectors-test.html
96 lines (89 loc) · 3.02 KB
/
css.selectors-test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Тест на знание селекторов</title>
<link rel="profile" href="https://gmpg.org/xfn/11"/>
<link rel="shortcut icon" href="https://anton.shevchuk.name/favicon.ico"/>
<link rel="stylesheet" href="css/styles.css"/>
<style>
#my:before {
content: '<a href="#" id="my">';
color: gray;
}
#my:after {
content: "</a>";
color: gray;
}
</style>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.color.js"></script>
<script type="text/javascript">
$(function () {
$('button').click(function () {
$('ul:first li:last').data('bingo', true)
let rand = Math.floor(Math.random() * 11) + 1
for (let i = 0; i < rand; i++) {
$('ul li:first').after('<li>List Item</li>')
$('ul li:last ').before('<li>List Item</li>')
}
let article = $('article:last').clone()
$('article:first').before(article)
let code = $(this).prev().text()
if (code) {
let els = eval(code)
els
.stop(true, true)
.animate({ 'background-color': '#ff5' }, 500)
.delay(100)
.animate({ 'background-color': '#fff' }, 500)
if (els.length === 1 && els.data('bingo')) {
$('h1').html('Test complete!')
.css('color', 'green')
}
}
})
})
</script>
</head>
<body class="formatter">
<header>
<h1>Тест на знание селекторов</h1>
<h2>Необходимо подсветить указанный элемент</h2>
</header>
<main>
<article>
<h2>Target</h2>
<ul>
<li><a href="index.html" id="my">Custom link</a></li>
<li>List Item</li>
<li>Подсвети меня!</li>
</ul>
</article>
<article>
<h3>Article Title</h3>
<ul>
<li>List Item</li>
<li>List Item</li>
<li>List Item</li>
</ul>
</article>
</main>
<footer>
© <a href="https://anton.shevchuk.name/jquery-book/">jQuery for beginners</a>
</footer>
<aside>
<nav>
<a href="index.html#0" title="go back" rel="prev">Back</a>
<a href="index.html" title="back to Index" rel="index">Index</a>
<a href="#" title="reload" onclick="window.location.reload();return false">Reload</a>
</nav>
<hr/>
<p>Ваша задача — подсветить последний элемент в первом списке статьи «Target» (и только в нём)</p>
<code contenteditable="true"><em>// highlight the last item in the first list</em>
$(<span>'li'</span>)</code>
<button type="button">Run Code</button>
</aside>
</body>
</html>