Forum'da ara:
Ara


Yazar Mesaj
Mesaj28.08.2013, 06:48 (UTC)    
Mesaj konusu: Sayfa değiştiğinde Değişen Arka Plan Javascript kodu

Bu kodu tasarım altındaki yazı bölümüne ekleyebilirsiniz.İçerisindeki renk kodları istediğiniz gibi düzenleyin. Smile Mr. Green

Kod:
<script type="text/javascript">
<!--
var bgcolors = new Array("#000000", "#800000", "#008000", "#808000", "#000080", "#800080", "#008080", "#C0C0C0", "#808080", "#FF0000", "#00FF00", "#FFFF00", "#0000FF", "#FF00FF", "#00FFFF", "#000000");
document.body.style.background = bgcolors[Math.floor(Math.random()*bgcolors.length)];
//-->
</script>

______________


Yeni makalemi okumanı öneririm >>>http://akifemreyuksek.tr.gg/
Mesaj31.08.2013, 13:04 (UTC)    
Mesaj konusu: Youtube Video Lightbox v1 / Text+Resim >>>

Lightbox video, resim vb. aynı pencerede farklı sayfada açılmasını sağlayan bir gereçtir.
Youtube'ye özel güzel bir video Lightbox
Sorunsuz çalışmaktadır.Vereceğimiz linkte, hem resim hem link halini bulabileceksiniz. Kullanım vb. hersey vereceğimiz linkte mevcuttur.Sadece youtube için geçerlidir.Güle güle kullanınız.

Bilgi ve Kodlar için : http://saidakgonek.tr.gg/videolightboxv1.htm
Mesaj31.08.2013, 14:13 (UTC)    
Mesaj konusu:

Lütfen sitenize yönlendirme yapmayınız.
Kodu burada paylaşınız.

______________

Sorunlar için support-tr( at )webme.com adresine mail atınız!.. (at) yerine gelecek.
AdminTarik, CryEngine3, Bilgi-Pinari, Ua1905Ua, GrafikDizayn, Ciz-Dizayn, OsmanliSultanlar ve tüm BS!..
Mesaj05.01.2014, 13:18 (UTC)    
Mesaj konusu:

Kopyaladığın içeriğin altına otomatik "Kaynak:" eklensin kodu.
Kod:
<script type="text/javascript">
function addLink() {
var body_element = document.getElementsByTagName('body')[0];
var selection;
selection = window.getSelection();
var pagelink = "<br /><br /> Kaynak: <a href='"+document.location.href+"'>"+document.location.href+"</a><br />";
var copytext = selection + pagelink;
var newdiv = document.createElement('div');
newdiv.style.position='absolute';
newdiv.style.left='-99999px';
body_element.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout(function() {
body_element.removeChild(newdiv);
},0);
}
document.oncopy = addLink;
</script>


Kodları;
Sitene Giriş Arrow Ekstraları Değiştir Arrow Ekstrayı Ekle Arrow Kendi <head> içeriği Arrow Kodu Yapıştır Arrow Kaydet.

______________
Mesaj01.04.2014, 18:44 (UTC)    
Mesaj konusu:

CTRL "U" dahil bir çok tuşu engelleme.
Kod:
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false"></body>
<script type="text/javascript">

//form tags to omit in NS6+:
var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

</script>
<body onkeydown="return false">


Kodları;
Sitene Giriş Arrow Ekstraları Değiştir Arrow Ekstrayı Ekle Arrow Kendi <head> içeriği Arrow Kodu Yapıştır Arrow Kaydet.
______________
Mesaj06.06.2014, 09:35 (UTC)    
Mesaj konusu: sitene ziyaretci ip adresi gosterme kodu!

sitene ziyaretci ip adresi gosterme kodu!

Kod:
<script language="javascript" src="http://in.sitekodlari.com/ipadresi.js"></script>


önizleme: 12.13.14.15
Mesaj06.06.2014, 09:50 (UTC)    
Mesaj konusu: Mouse Sağ Tuşu Engelleme Kodu Ekle

Mouse Sağ Tuşu Engelleme Kodu Ekle :

Kod:
<script language="javascript" src="http://in.sitekodlari.com/sagtus.js"></script>
Mesaj10.06.2014, 09:05 (UTC)    
Mesaj konusu:

Siteyi Kapat butonu...

Kod:
<form><input type="button" value="Siteyi Kapat" onClick_fckprotectedatt="%20onClick%3D%22window.close(self)%22" /></form>

______________

BİLGİ-CUKURU.TR.GG
Mesaj19.06.2014, 13:43 (UTC)    
Mesaj konusu: Kaynak Kodu Eklentisi

Çok Teşekkür Ederim Smile Çok Lazımdı ♥
______________
aglamakaderim│aşk külliyen yalan
Mesaj31.05.2015, 20:52 (UTC)    
Mesaj konusu:

[quote="xmert96x"]:: "The Matrix" Text effect
[code]<style type="text/css">
.matrix { font-family:Lucida Console, Courier, Monotype; font-size:10pt; text-align:center; width:10px; padding:0px; margin:0px;}
</style>

<script type="text/javascript" language="JavaScript">

<!--
var rows=11; // must be an odd number
var speed=50; // lower is faster
var reveal=2; // between 0 and 2 only. The higher, the faster the word appears
var effectalign="default" //enter "center" to center it.

/***********************************************
* The Matrix Text Effect- by Richard Womersley (http://www.mf2fm.co.uk/rv)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

var w3c=document.getElementById && !window.opera;;
var ie45=document.all && !window.opera;
var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho;
var m_coch=new Array();
var m_copo=new Array();
window.onload=function() {
if (!w3c && !ie45) return
var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
ma_txt=" "+ma_txt+" ";
columns=ma_txt.length;
if (w3c) {
while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
ma_tab=document.createElement("table");
ma_tab.setAttribute("border", 0);
ma_tab.setAttribute("align", effectalign);
ma_tab.style.backgroundColor="#000000";
ma_bod=document.createElement("tbody");
for (x=0; x<rows; x++) {
ma_row=document.createElement("tr");
for (y=0; y<columns; y++) {
matemp=document.createElement("td");
matemp.setAttribute("id", "Mx"+x+"y"+y);
matemp.className="matrix";
matemp.appendChild(document.createTextNode(String.fromCharCode(160)));
ma_row.appendChild(matemp);
}
ma_bod.appendChild(ma_row);
}
ma_tab.appendChild(ma_bod);
matrix.appendChild(ma_tab);
} else {
ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
for (var x=0; x<rows; x++) {
ma_tab+='<t'+'r>';
for (var y=0; y<columns; y++) {
ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'">&nbsp;</'+'td>';
}
ma_tab+='</'+'tr>';
}
ma_tab+='</'+'table>';
matrix.innerHTML=ma_tab;
}
ma_cho=ma_txt;
for (x=0; x<columns; x++) {
ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94));
m_copo[x]=0;
}
ma_bod=setInterval("mytricks()", speed);
}

function mytricks() {
x=0;
for (y=0; y<columns; y++) {
x=x+(m_copo[y]==100);
ma_row=m_copo[y]%100;
if (ma_row && m_copo[y]<100) {
if (ma_row<rows+1) {
if (w3c) {
matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y);
matemp.firstChild.nodeValue=m_coch[y];
}
else {
matemp=document.all["Mx"+(ma_row-1)+"y"+y];
matemp.innerHTML=m_coch[y];
}
matemp.style.color="#33ff66";
matemp.style.fontWeight="bold";
}
if (ma_row>1 && ma_row<rows+2) {
matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-2)+"y"+y];
matemp.style.fontWeight="normal";
matemp.style.color="#00ff00";
}
if (ma_row>2) {
matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-3)+"y"+y];
matemp.style.color="#009900";
}
if (ma_row<Math.floor(rows/2)+1) m_copo[y]++;
else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y);
else if (ma_row<rows+2) m_copo[y]++;
else if (m_copo[y]<100) m_copo[y]=0;
}
else if (Math.random()>0.9 && m_copo[y]<100) {
m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length));
m_copo[y]++;
}
}
if (x==columns) clearInterval(ma_bod);
}

function zoomer(ycol) {
var mtmp, mtem, ytmp;
if (m_copo[ycol]==Math.floor(rows/2)+1) {
for (ytmp=0; ytmp<rows; ytmp++) {
if (w3c) {
mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
mtmp.firstChild.nodeValue=m_coch[ycol];
}
else {
mtmp=document.all["Mx"+ytmp+"y"+ycol];
mtmp.innerHTML=m_coch[ycol];
}
mtmp.style.color="#33ff66";
mtmp.style.fontWeight="bold";
}
if (Math.random()<reveal) {
mtmp=ma_cho.indexOf(ma_txt.charAt(ycol));
ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length);
}
if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1);
m_copo[ycol]+=199;
setTimeout("zoomer("+ycol+")", speed);
}
else if (m_copo[ycol]>200) {
if (w3c) {
mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
}
else {
mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
}
mtmp.style.fontWeight="normal";
mtem.style.fontWeight="normal";
setTimeout("zoomer("+ycol+")", speed);
}
else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
if (m_copo[ycol]>100 && m_copo[ycol]<200) {
if (w3c) {
mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
mtmp.firstChild.nodeValue=String.fromCharCode(160);
mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
mtem.firstChild.nodeValue=String.fromCharCode(160);
}
else {
mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
mtmp.innerHTML=String.fromCharCode(160);
mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
mtem.innerHTML=String.fromCharCode(160);
}
setTimeout("zoomer("+ycol+")", speed);
}
}
// -->
</script><div id="matrix">Buraya Yazınız </div>[/code][/quote]
______________
google-site-verification: google3e994e8f789a1a2c.html
Mesaj04.09.2015, 13:14 (UTC)    
Mesaj konusu: Javascript İleriSayım Sayacı

Sitenize xxx gün, “xxx gün, xx saat ve x dakikadır sizlerleyiz” şeklinde oluşan bir sayaçtır.


Kod:
<script language="JavaScript1.2">
 
function setcountup(theyear,themonth,theday){
yr=theyear;mo=themonth;da=theday
}
//Tarih yıl,ay,gün olarak yazmaktadır.
setcountup(2015,09,04)
var displaymessage=" Sizlerleyiz"
var countupwidth='95%'
var countupheight='20px'
var countupbgcolor='alt1'
var opentags='<span class="italic bold">'
var closetags='</span>'
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var crosscount=''
function start_countup(){
if (document.layers)
document.countupnsmain.visibility="show"
else if (document.all||document.getElementById)
crosscount=document.getElementById&&!document.all?document.getElementById("countupie") : countupie
countup()
}
if (document.all||document.getElementById)
document.write('<span id="countupie" style="width:'+countupwidth+'; background-color:'+countupbgcolor+'"></span>')
window.onload=start_countup
 
function countup(){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
paststring=montharray[mo-1]+" "+da+", "+yr
dd=Date.parse(todaystring)-Date.parse(paststring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1)
if (document.layers){
document.countupnsmain.document.countupnssub.document.write(opentags+dday+ "gün, "+dhour+" saat, "+dmin+" dakika ve "+dsec+" saniyedir sizlerleyiz... "+displaymessage+closetags)
document.countupnsmain.document.countupnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+dday+ " Gün, "+dhour+" Saat, "+dmin+" Dakika ve "+dsec+" Saniyedir "+displaymessage+closetags
setTimeout("countup()",1000)
}
</script>

______________


En son analogfikir tarafından 04.09.2015 13:16:26 tarihinde değiştirildi, toplam 3 kere değiştirildi
Mesaj07.09.2015, 18:30 (UTC)    
Mesaj konusu:

Tarih Script

Önizleme sitemde var.

Kod:
<span style="color: #333;font-size: 21px;">
            <div id="clock">Y&uuml;kleniyor...</div>
            <script type="text/javascript">
function refrClock()
{
var d=new Date();
var s=d.getSeconds();
var m=d.getMinutes();
var h=d.getHours();
var day=d.getDay();
var date=d.getDate();
var month=d.getMonth();
var year=d.getFullYear();
var days=new
Array("","","","","","","");
var months=new Array("Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık");
if (s<10) {s="0" + s}
if (m<10) {m="0" + m}
document.getElementById("clock").innerHTML=days[day] + "   " + h + "." + m + "." + s + " <br/> " + date + " " + months[month] + " " + year + ""
setTimeout("refrClock()",1000);
}
refrClock();
</script> </span>
Mesaj10.01.2016, 13:01 (UTC)    
Mesaj konusu:

Bunları nereye yazcaktık Confused
Mesaj10.01.2016, 20:54 (UTC)    
Mesaj konusu:

Sitene Giriş Arrow Tasarım Arrow Tasarım Ayarları Arrow Tasarım üstü Arrow Kaydet
______________
Yeni Tasarımımıza Geçtik [Değerlendirmenizi Bekliyoruz]

Yürekten Sevene Mesafe Yoktur..
Mesaj01.04.2017, 22:19 (UTC)    
Mesaj konusu: Javascript Açılır - Kapanır Div Yapım

Merhaba arkadaşlar. Javascript Açılır-Kapanır div yapımı dersini sizler için anlattım. Bu ders sayesinde Mobil Menü mantığını kavramış olacaksınız. İyi Seyirler
https://www.youtube.com/watch?v=Ev9Rb6D0-qw&t=48s
Önceki mesajları göster:   


Powered by phpBB © 2001, 2005 phpBB Group
Türkçe Çeviri: phpBB Türkiye & Erdem Çorapçıoğlu