|
@@ -1,3 +1,21 @@
|
|
|
+```
|
|
|
+var tasks = []
|
|
|
+$("h2").each(function(){
|
|
|
+ var text = $(this).text().split(' ')
|
|
|
+ var name = text[0]
|
|
|
+ var weight = text[1]
|
|
|
+ tasks.push({name: name, weight: weight})
|
|
|
+})
|
|
|
+
|
|
|
+var rate = 10;
|
|
|
+var randomValues = tasks.map(function(item){
|
|
|
+ return Math.random()*(10-(rate - item.weight))
|
|
|
+})
|
|
|
+
|
|
|
+alert(tasks[randomValues.indexOf(Math.max.apply(Math, randomValues))].name)
|
|
|
+```
|
|
|
+
|
|
|
+
|
|
|
## Галерея 8
|
|
|
Галерея (img, prev, next) + лента thumbnails. Hashlinks (?)
|
|
|
```javascript
|