-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path18.Lesson_ng-src_ngAnimate.html
118 lines (87 loc) · 3.77 KB
/
18.Lesson_ng-src_ngAnimate.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>18.Lesson_ng-src_ngAnimate</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.10/angular.min.js"></script>
<!-- Animasyon özelliklerini kullanabilmek için .JS dosyası eklenmeli ve ngAnimate alanı yazılmalıdır -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.10/angular-animate.js"></script>
<script>
var ControllerExample = angular.module("myapp", ['ngAnimate']);
ControllerExample.controller("mycontrol", function ($scope) {
//Eklenen nesnelerin default değerleri false olarak declare edildi
$scope.hideState1 = false;
$scope.hideState2 = false;
$scope.hideState2 = false;
//Eklemen resmin url adresi AngularImage ismiyle tutuldu
$scope.AngularImage = "https://angular.io/assets/images/logos/angular/angular.svg";
//Her bir animasyon için fonksiyon oluşturarak sahip oldukları değerin tam tersinde değer atamaları gerçekleştirildi
$scope.AnimateFunction1 = function () {
$scope.hideState1 = !$scope.hideState1;
}
$scope.AnimateFunction2 = function () {
$scope.hideState2 = !$scope.hideState2;
}
$scope.AnimateFunction3 = function () {
$scope.hideState3 = !$scope.hideState3;
}
});
</script>
<style>
/* style tanımlamaları gerçekleştirildi */
.Image1 {
transition: all 2s;
width: 100px;
}
.Image1.ng-hide {
opacity: 0;
}
.Image2 {
transition: all 2s;
width: 100px;
}
.Image2.ng-hide {
height: 1px;
width: 1px;
}
.Image3 {
transition: all 2s;
width: 100px;
}
.Image3.ng-hide {
transform: rotateZ(360deg);
}
</style>
</head>
<!--
♦ ngAnimate: Uygulamada animasyon özellikleri için kullanılır. (angular-animate.js)
ng-Animate, CSS animasyon ve transition özelliklerini, AngularJS için daha kolay kullanılabilir hale getiren bir modüldür.
ng-hide / ng-show, ng-if, ng-repeat gibi direktifleri kullanırken, DOM objesinin çıktısı ve bu çıktının sahip olduğu-olacağı sınıf değerlerine tam olarak hakim olunmamaktadır.
ngAnimate, bu direktiflerin değerlerine göre alakalı DOM elementlerine sınıf vererek CSS üzerinde bu sınıf için animasyon atanmasına izin verir.
-->
<body ng-app="myapp" ng-controller="mycontrol">
<!-- NOT: Daha düzgün bir görünüm için tablo eklendi -->
<table>
<tr>
<td>
<!-- ng-click attribute alanında AnimateFunction1 fonksiyonu çağrıldı -->
<button ng-click="AnimateFunction1()">Göster / Gizle</button>
<br>
<!-- class ile style biçimlendirmeleri yapıldı, ng-hide özelliği verildi, resim ise bir değişkende tutularak ng-src alanına eklendi -->
<img class="Image1" ng-hide="hideState1" ng-src="{{AngularImage}}">
</td>
<td>
<button ng-click="AnimateFunction2()">Göster / Gizle</button>
<br>
<img class="Image2" ng-hide="hideState2" ng-src="{{AngularImage}}">
</td>
<td>
<button ng-click="AnimateFunction3()">Göster / Gizle</button>
<br>
<img class="Image3" ng-hide="hideState3" ng-src="{{AngularImage}}">
</td>
</tr>
</table>
</body>
</html>