Sayın ziyaretçi, AllaTurkaa sitesine hoş geldiniz.
Eğer buraya ilk ziyaretiniz ise lütfen yardım bölümünü okuyunuz. Böylece bu sitenin nasıl çalıştığı konusunda ayrıntılı bilgilere ulaşabilirsiniz.
Eğer sitenin tüm olanaklarından faydalanmak istiyorsanız, kayıt yaptırmayı düşünmelisiniz.
Bunun için kayıt formunu kullanabilir ya da bu bağlantıya giderek kayıt işlemi hakkında daha fazla bilgi alabilirsiniz.
Eğer önceden kayıt yaptırdıysanız buradan giriş yapabilirsiniz.
Sitene AcıLır Duyuru Panosu
|
Kaynak kod
|
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
|
<!-- açılır duyuru panosu kod başlangıcı -->
<SCRIPT type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></SCRIPT>
<style type="text/css">
body, input{font-family: Calibri, Arial;}
#contentt {text-align:left;position:relative;background-color:#73152C;width:160px;height:30px;padding:3px;margin-top:5px;overflow:hidden;padding:8px;-webkit-border-radius: 6px;-moz-border-radius: 6px;border-radius: 6px;}
#resett{display:none;}
</style>
<div id="contentt"><a style="text-align:left;margin:0px;padding:0px;background-color:transparent;border:none;text-decoration:none;font-family:Calibri, Arial;font-size:17px;font-weight:bold;color:#e5e5e5;float:left;">Yeni Duyuru!</a><input style="float:right;" id="animate" type="button" value="Oku">
<input style="float:right;" id="resett" type="button" value="Kapat"><br/><br/><div style="display:none;"id="duyurun"><a style="text-align:left;font-family:Calibri, Arial;font-size:16px;font-weight:bold;color:#e5e5e5;float:left;margin:0px;padding:0px;background-color:transparent;border:none;text-decoration:none;">
Merhaba!
<br/><br/>
Bu kısma kendi duyuru yazınızı yazabilirsiniz! Ziyaretçileriniz bu duyuru panosuna bayılacak!
<br/><br/>
Evet, gerçekten çok güzel!
</a></div>
<!-- DONT DELETE THIS CODE -->
<!-- siteneeklekodlari.blogspot.com -->
<!-- BU KISIMDAN İTİBAREN KODDA DEĞİŞİKLİK YAPMAK YASAKTIR -->
<div id="eklesseyi" style="display:none;position:absolute;bottom:1px;right:3px;">
<!-- bu kod koddostu tarafından oluşturulmuştur -->
<a title="sitene açılır duyuru panosu kodu ekle" href="http://siteneeklekodlari.blogspot.com/2012/01/sitene-aclr-duyuru-panosu-koddostu.html" target="_blank" style="float:right;margin:0px;padding:0px;background-color:transparent;border:none;text-decoration:none;"><img alt="kod dostu duyuru panosu" src="http://4.bp.blogspot.com/-xtuPxjTyUKY/TwQmZLDs3LI/AAAAAAAAD-Y/YosLOoCQY70/s1600/225h2.png" style="opacity:0.4;filter:alpha(opacity=40);margin:0px;padding:0px;background-color:transparent;border:none;"/></a></div></div>
<script type="text/javascript">
$("#animate").click(function() {
$("#contentt")
.animate({"width": "500px"}, 500)
.animate({"height": "200px"}, 500);
document.getElementById('resett').style.display='block';
document.getElementById('animate').style.display='none';
document.getElementById('duyurun').style.display='block';
document.getElementById('eklesseyi').style.display='block';
});
$("#resett").click(function() {
$("#contentt")
.animate({"height": "30px"}, 500)
.animate({"width": "160px"}, 500);
document.getElementById('duyurun').style.display='none';
document.getElementById('animate').style.display='block';
document.getElementById('resett').style.display='none';
document.getElementById('eklesseyi').style.display='none';
});
</script>
<!-- bu kod koddostu tarafından oluşturulmuştur -->
<!-- siteneeklekodlari.blogspot.com -->
<!-- açılır duyuru panosu kod sonu -->
|