Skip to content

Commit 69ec9b9

Browse files
Changed rotation algorithm of post-its
1 parent f79c665 commit 69ec9b9

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

src/animation.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ const PubSub = require('pubsub-js');
22
const {createElement} = require('./dom-manipulation')
33

44
const round = (number, positions = 2) => Math.round(number * Math.pow(10, positions)) / Math.pow(10, positions);
5+
const any = array => array[Math.floor(Math.random() * array.length)];
56

67
const initialize = (currentSenarioId) => {
78
PubSub.subscribe('board.ready', (topic, {columns}) => {
@@ -28,9 +29,10 @@ const initialize = (currentSenarioId) => {
2829
});
2930

3031
PubSub.subscribe('workitem.added', (topic, {column, item}) => {
32+
const rotation = any(['left-2', 'left', 'none', 'right', 'right-2']);
3133
let $card = createElement({
3234
type: 'li',
33-
className: 'post-it',
35+
className: `post-it rotate-${rotation}`,
3436
attributes:{'data-card-id': item.id},
3537
style: `background: ${item.color};`
3638
})

style.css

+13-10
Original file line numberDiff line numberDiff line change
@@ -75,23 +75,26 @@
7575
.queue .post-it:nth-child(1000n+1){
7676
margin-top: 0;
7777
}
78-
.todo .post-it:nth-child(4n+1),
79-
.queue .post-it:nth-child(4n+1){
78+
.todo .rotate-none,
79+
.queue .rotate-none{
8080
transform: rotate(0deg);
8181
}
82-
.todo .post-it:nth-child(4n+2),
83-
.queue .post-it:nth-child(4n+2){
82+
.todo .rotate-right,
83+
.queue .rotate-right{
8484
transform: rotate(2deg);
8585
}
86-
.todo .post-it:nth-child(4n+3),
87-
.queue .post-it:nth-child(4n+3){
86+
.todo .rotate-left,
87+
.queue .rotate-left{
8888
transform: rotate(-2deg);
8989
}
90-
.todo .post-it:nth-child(4n+4),
91-
.done .post-it:nth-child(4n+4),
92-
.queue .post-it:nth-child(4n+4){
90+
.todo .rotate-right-2,
91+
.queue .rotate-right-2{
9392
transform: rotate(4deg);
9493
}
94+
.todo .rotate-left-2,
95+
.queue .rotate-left-2{
96+
transform: rotate(-4deg);
97+
}
9598

9699
.done .post-it:nth-child(5n+1){
97100
z-index: 10;
@@ -154,4 +157,4 @@
154157

155158
.chart {
156159
border: 1px solid lightgray;
157-
}
160+
}

0 commit comments

Comments
 (0)