-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangularjs-bubbles.html
More file actions
102 lines (91 loc) · 2.35 KB
/
angularjs-bubbles.html
File metadata and controls
102 lines (91 loc) · 2.35 KB
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
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>AngularJS Bubbles by T.D. Stoneheart</title>
<script src="angular.min.js"></script>
<style>
body {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
overflow: hidden;
background-image: linear-gradient(180deg, #bf0 0%, #8f0 100%);
}
.bubble {
position: fixed;
background-color: white;
border-radius: 50%;
animation: bubble-animation 6s linear 0s 1 forwards;
}
@keyframes bubble-animation {
0% {
opacity: 0;
transform: translateY(0em);
}
50% {
opacity: 0.7;
transform: translateY(-3em);
}
100% {
opacity: 0;
transform: translateY(-6em);
}
}
</style>
</head>
<body ng-app="bubblesApp" ng-controller="bubblesController">
<div
ng-repeat="bubble in bubbles"
ng-style="bubble.style"
class="bubble"
></div>
<script>
angular
.module('bubblesApp', [])
.controller('bubblesController', [
'$scope',
'$timeout',
'$interval',
bubblesController,
]);
function bubblesController($scope, $timeout, $interval) {
class Bubble {
size =
0.3 *
Math.random() *
Math.min(window.innerWidth, window.innerHeight);
x = Math.random() * window.innerWidth;
y = Math.random() * window.innerHeight;
willBeDeleted = false;
constructor() {
$timeout(() => this.selfDestruct(), 6000);
}
selfDestruct() {
this.willBeDeleted = true;
}
get style() {
return {
left: `${this.x}px`,
top: `${this.y}px`,
width: `${this.size}px`,
height: `${this.size}px`,
filter: `blur(${this.size / 40}px)`,
};
}
}
$scope.bubbles = [];
$interval(eventLoop, 120);
function eventLoop() {
$scope.bubbles = $scope.bubbles
.filter(isNotDeleted)
.concat([new Bubble()]);
}
function isNotDeleted(bubble) {
return !bubble.willBeDeleted;
}
}
</script>
</body>
</html>