init
This commit is contained in:
parent
06f61d8ce8
commit
f301cb744d
2271 changed files with 103162 additions and 0 deletions
1
02-ui/05-widgets/02-widgets-structure/04-voter/task/.plnkr
Executable file
1
02-ui/05-widgets/02-widgets-structure/04-voter/task/.plnkr
Executable file
|
@ -0,0 +1 @@
|
|||
{"name":"voter-src","plunk":"GSEbTNTUewU3i46rcRkr"}
|
41
02-ui/05-widgets/02-widgets-structure/04-voter/task/index.html
Executable file
41
02-ui/05-widgets/02-widgets-structure/04-voter/task/index.html
Executable file
|
@ -0,0 +1,41 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
.voter {
|
||||
font-family: Consolas, "Lucida Console", monospace;
|
||||
font-size: 18px;
|
||||
}
|
||||
.up, .down {
|
||||
cursor: pointer;
|
||||
color: blue;
|
||||
font-weight: bold;
|
||||
}
|
||||
</style>
|
||||
<script src="http://code.jquery.com/jquery.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="voter" class="voter">
|
||||
<span class="down">—</span>
|
||||
<span class="vote">0</span>
|
||||
<span class="up">+</span>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function Voter(options) {
|
||||
// ... ваш код
|
||||
}
|
||||
|
||||
var voter = new Voter({
|
||||
elem: $('#voter')
|
||||
});
|
||||
|
||||
voter.setVote(1);
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue