├── .gitattributes ├── .gitignore ├── freelancer kazanç programı javacript ile yaptık ├── freelance.css ├── freelance.js ├── index.html └── nbproject │ ├── private │ ├── private.properties │ └── private.xml │ ├── project.properties │ └── project.xml ├── javascript doğrulamalı üye giriş formu güzel örnek.html ├── javascript kaç parmak tuttum oyunu ├── 0.png ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── nbproject │ ├── private │ │ └── private.properties │ ├── project.properties │ └── project.xml └── newhtml.html ├── javascript notları oğuzhan memiş videolarından.txt ├── javascript-top-oyunuu ├── Tinie Tempah - Girls Like (Official Video).mp3 ├── index.html └── javascript top oyun uyaptık.txt ├── javascriptle GÜZEL GALERİ YAPTIK ├── nbproject │ ├── private │ │ └── private.properties │ ├── project.properties │ └── project.xml └── newhtml.html ├── javascripttt adan zye javascript.txt └── reaksiyon hız testi oyunu ├── nbproject ├── private │ └── private.properties ├── project.properties └── project.xml └── newhtml.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /freelancer kazanç programı javacript ile yaptık/freelance.css: -------------------------------------------------------------------------------- 1 | /*table,tr,td{ 2 | border:1px solid gray; 3 | 4 | }*/ -------------------------------------------------------------------------------- /freelancer kazanç programı javacript ile yaptık/freelance.js: -------------------------------------------------------------------------------- 1 | var toplamUcret=document.getElementById("toplam"), 2 | sure=document.getElementById("bitis"), 3 | buton=document.getElementById("buton"), 4 | sonucDiv=document.getElementById("sonuc"), 5 | paraBirimi=prompt("Para Birimi Giriniz..."); 6 | 7 | document.getElementById("para").innerHTML="para biriminiz "+paraBirimi+" değiştir"; 8 | 9 | 10 | document.getElementById("degistirici").addEventListener("click",function(){ 11 | paraBirimi=prompt("ParaBirimi Giriniz"); 12 | document.getElementById("para").innerHTML="para biriminiz "+paraBirimi+" değiştir"; 13 | 14 | }); 15 | buton.addEventListener("click",function(){ 16 | var gunlukUcret=toplamUcret.value/sure.value; 17 | gunlukUcret=gunlukUcret.toFixed(2);/*virgülden sonraki 2 basamağı göster*/ 18 | sonucDiv.innerHTML="Gunluk ucretiniz = "+gunlukUcret+ " " +paraBirimi; 19 | 20 | }); -------------------------------------------------------------------------------- /freelancer kazanç programı javacript ile yaptık/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Freelancer Programı 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
Toplam Gelir:
Bitiş Süresi:
27 | 28 |
29 | 30 | 31 | -------------------------------------------------------------------------------- /freelancer kazanç programı javacript ile yaptık/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | index.file=index.php 2 | url=http://localhost/PhpProject13/ 3 | -------------------------------------------------------------------------------- /freelancer kazanç programı javacript ile yaptık/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/xampp/htdocs/PhpProject13/index.html 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /freelancer kazanç programı javacript ile yaptık/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | include.path=${php.global.include.path} 2 | php.version=PHP_56 3 | source.encoding=UTF-8 4 | src.dir=. 5 | tags.asp=false 6 | tags.short=false 7 | web.root=. 8 | -------------------------------------------------------------------------------- /freelancer kazanç programı javacript ile yaptık/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.php.project 4 | 5 | 6 | PhpProject13 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /javascript doğrulamalı üye giriş formu güzel örnek.html: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | TODO supply a title 10 | 11 | 12 | 13 | 70 | 71 | 142 | 143 | 144 | 145 | 146 |
147 | 150 | 151 |
152 |
153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 178 | 179 |
Kullanıcı Adı:
Şifre:
Şifre Tekrar:
Email:
176 | 177 |
180 | 181 | 182 |
183 | 184 | 185 |
186 | 187 | 188 |
189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 204 | 205 |
Kullanıcı Adı:
Şifre:
202 | 203 |
206 |
207 |
208 | 209 |
210 | 214 |
215 | 216 | 217 | -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramazanaras/JavaScriptExamples/50d05d8032d61a80411fae6f9bb473b9f10b7d8b/javascript kaç parmak tuttum oyunu/0.png -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramazanaras/JavaScriptExamples/50d05d8032d61a80411fae6f9bb473b9f10b7d8b/javascript kaç parmak tuttum oyunu/1.png -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramazanaras/JavaScriptExamples/50d05d8032d61a80411fae6f9bb473b9f10b7d8b/javascript kaç parmak tuttum oyunu/2.png -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramazanaras/JavaScriptExamples/50d05d8032d61a80411fae6f9bb473b9f10b7d8b/javascript kaç parmak tuttum oyunu/3.png -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramazanaras/JavaScriptExamples/50d05d8032d61a80411fae6f9bb473b9f10b7d8b/javascript kaç parmak tuttum oyunu/4.png -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramazanaras/JavaScriptExamples/50d05d8032d61a80411fae6f9bb473b9f10b7d8b/javascript kaç parmak tuttum oyunu/5.png -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | index.file=index.php 2 | url=http://localhost/PhpProject14/ 3 | -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | include.path=${php.global.include.path} 2 | php.version=PHP_56 3 | source.encoding=UTF-8 4 | src.dir=. 5 | tags.asp=false 6 | tags.short=false 7 | web.root=. 8 | -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.php.project 4 | 5 | 6 | PhpProject14 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /javascript kaç parmak tuttum oyunu/newhtml.html: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | Kaç parmak tuttum 10 | 11 | 12 | 35 | 36 | 37 | 38 | 39 | 40 |
41 |
42 |
43 | 44 |
45 | 46 | 47 | 48 | 49 | 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /javascript notları oğuzhan memiş videolarından.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramazanaras/JavaScriptExamples/50d05d8032d61a80411fae6f9bb473b9f10b7d8b/javascript notları oğuzhan memiş videolarından.txt -------------------------------------------------------------------------------- /javascript-top-oyunuu/Tinie Tempah - Girls Like (Official Video).mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramazanaras/JavaScriptExamples/50d05d8032d61a80411fae6f9bb473b9f10b7d8b/javascript-top-oyunuu/Tinie Tempah - Girls Like (Official Video).mp3 -------------------------------------------------------------------------------- /javascript-top-oyunuu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 18 | 19 | 20 | 21 |