Java Kodları (Hepsi)

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Tüm Java Kodlarını Bu Başlıkta Toplayacağım

sayfada kayan resim

<script language="JavaScript">
<!--Smoke Ring Script by [email protected]
if (document.all){
kg=new Image();
kg.src="Aring.gif";
document.write('<span id="rings" style="position:absolute;top:0px;left:0px">'
+'<img src="resimkoy.gif" name="kg" style="position:relative"></span>');
var TimeLinethree = 150;
var TimeLineTwo = 0;
var TimeLineOne = 0;
var ThreeStep = 1.5;
var TwoStep = 1.5;
var OneStep = 1.5;
var xp = 100;
var yp = 100;
function SmokeRing(){

document.all.rings.document.images["kg"].style.filter='alpha(opacity='+TimeLinethree+')';
document.all.rings.document.images["kg"].style.top=yp + (-TimeLineOne);
document.all.rings.document.images["kg"].style.left=xp + (-TimeLineOne);
document.all.rings.document.images["kg"].width=TimeLineTwo;
document.all.rings.document.images["kg"].height=TimeLineTwo;

TimeLinethree-=ThreeStep;
TimeLineTwo+=TwoStep;
TimeLineOne+=OneStep;
setTimeout('SmokeRing()',20);
if ((TimeLineTwo > 180) || (TimeLineOne > 180) || (TimeLinethree < 0))
{TimeLineTwo=0;TimeLineOne=0;TimeLinethree=150;


stop=window.document.body.clientHeight-280;
sleft=window.document.body.clientWidth/2.5;//?
yp=Math.round(Math.random()*stop);
xp=Math.round(Math.random()*sleft);
document.all.rings.style.top=yp+document.body.scrollTop;
document.all.rings.style.left=xp+document.body.scrollLeft;
}
if ((yp < 100) || (xp < 100))
{
yp+=100;
xp+=100;
}
}
}
if (document.all)SmokeRing();
// -->
</script>
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Java Uygulamasında HTML Formatında Mail Göndermek

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.text.*;
import java.util.*;
import javax.mail.*;
import javax.activation.*;
import javax.mail.internet.*;

public class HTMLMailGUI implements WindowListener, ActionListener
{
private JFrame f;

private JLabel etiketKime;
private JLabel etiketKimden;
private JLabel etiketKonu;
private JLabel etiketIcerik;

private JTextField alanKime;
private JTextField alanKimden;
private JTextField alanKonu;
private JTextArea alanIcerik;
private JScrollPane pano;

private JButton dugme;

public static String dizeKime=""'>
public static String dizeKimden=""'>
public static String dizeKonu=""'>
public static String dizeIcerik=""'>

public String kod = ""'>

public HTMLMailGUI(String baslik)
{
f = new JFrame(baslik);
dugme = new JButton("Gönder");
dugme.setToolTipText("Mailinizi göndermek için tiklayin");
dugme.setMnemonic('g');

etiketKime = new JLabel("Kime :");
etiketKimden = new JLabel("Kimden :");
etiketKonu = new JLabel("Konu :");
etiketIcerik = new JLabel("Mail içeriginizi asagidaki alana yaziniz");

alanKime = new JTextField(25);
alanKimden = new JTextField(25);
alanKonu = new JTextField(25);
alanIcerik = new JTextArea(5,27);
pano = new JScrollPane(alanIcerik);

// onceden dolduralim---------
kod = kod+ "<html><head><title>HTML formatli mail</title></head>"'>
kod = kod+ "<body bgcolor='#ffffff' link='#ff0000' "'>
kod = kod+ "vlink='#eeeeee'>"'>
kod = kod+ "<font face='Verdana' size='4' color='#ffa800'>"'>
kod = kod+ "Sevgili Okur,

iste Java ile gönderilen "'>
kod = kod+ "HTML formatli mailiniz. "'>
kod = kod+ "
Bu sayfadaki hersey tipik HTML nesneleri:
"'>
kod = kod+ "<table border='0' width='223' cellpadding='20' "'>
kod = kod+ "cellspacing='10' bgcolor='#dddddd'>"'>
kod = kod+ "<tr><td bgcolor='#ffffff'>"'>
kod = kod+ "<a href='http://www.pusula.com/java/'>"'>
kod = kod+ "Bir Link</a>
</td></tr><tr><td bgcolor='#ffffff'>"'>
kod = kod+ "<img src='http://www.pusula.com/jsp/images/logob.gif'"'>
kod = kod+ " border='0' alt=''></td></tr>"'>
kod = kod+ "</table>

Saygilar.</font></body></html>"'>

alanKime.setText("[email protected]");
alanKimden.setText("[email protected]");
alanKonu.setText("Java programindan size bir Email var!!");
alanIcerik.setText(kod);
//--------------------------
}

public void pencereyiGoster()
{
Container cnt = f.getContentPane();

dugme.addActionListener(this);
f.setSize(350,290);
f.setLocation(400,300);
//cnt.setBackground(Color.white);
cnt.setLayout(new FlowLayout());

cnt.add(etiketKime);
cnt.add(alanKime);
cnt.add(etiketKimden);
cnt.add(alanKimden);
cnt.add(etiketKonu);
cnt.add(alanKonu);
cnt.add(etiketIcerik);
cnt.add(pano);
cnt.add(dugme);
f.addWindowListener(this);
f.setVisible(true);
}

public void gonder() throws Exception
{
try
{
System.out.println("Emailiniz gönderiliyor....");

InternetAddress kime = new InternetAddress(dizeKime);
InternetAddress kimden = new InternetAddress(dizeKimden);

Properties propertylerimiz = new Properties();
propertylerimiz.put("mail.smtp.host", "domain.com");
Session oturum = Session.getDefaultInstance(propertylerimiz, null);
Message mesaj = new MimeMessage(oturum);

mesaj.addRecipient(Message.RecipientType.TO, kime);
mesaj.setSubject(dizeKonu);
mesaj.setFrom(kimden);
mesaj.setContent(dizeIcerik,"text/html"); // HTML icerik
//mesaj.setText(dizeIcerik);

Transport.send(mesaj);
System.out.println("Emailiniz gönderildi.");
}
catch (Exception e)
{
e.printStackTrace();
}
}

public static void main(String args[]) throws Exception
{
HTMLMailGUI penc = new HTMLMailGUI("Java email programi");
penc.pencereyiGoster();
}

public void actionPerformed( ActionEvent e) {
if (e.getSource() == dugme) {

dizeKime=alanKime.getText();
dizeKimden=alanKimden.getText();
dizeKonu=alanKonu.getText();
dizeIcerik=alanIcerik.getText();

try
{
HTMLMailGUI penc = new HTMLMailGUI("");
penc.gonder();
}
catch (Exception exc)
{
exc.printStackTrace();
}
etiketIcerik.setText("Emailiniz gönderildi.");
}
}

public void windowClosing(WindowEvent e)
{
System.exit(0);
}
public void windowClosed(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowOpened(WindowEvent e){}

}
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Fareyi Kullanarak Resim Çizmek

public class MousePaint extends Frame implements MouseMotionListener
{
private int x1, y1, x2, y2;
public MousePaintII()
{
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent we)
{
dispose();
System.exit(0);
}
});
addMouseMotionListener(this);
setBounds(50,50,400,250);
setVisible(true);
}
public static void main(String[] argv)
{
new MousePaintII();
}
public void update(Graphics g)
{
paint(g);
}
public void paint(Graphics g)
{
g.setColor(Color.black);
g.drawLine(x1, y1, x2, y2);
}
public void mouseDragged(MouseEvent me)
{
me.consume();
int x = me.getX();
int y = me.getY();
if ( x1 == 0 )
{
x1 = x;
}
if ( y1 == 0 )
{
y1 = y;
}
x2 = x;
y2 = y;
repaint();
x1 = x2;
y1 = y2;
}
public void mouseMoved(MouseEvent me)
{ }
}​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Java İle Girilen Adresin İpsini Almak

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
import java.net.*;

public class siteAdresi extends JFrame implements ActionListener
{
private JButton git;
private JTextField alan;
private Label etiket;

public siteAdresi()
{
super("Adres Ýp'si Alma Programý");
setSize(400,110);

Container c=getContentPane();

git=new JButton("Gözat");
git.addActionListener(this);

alan=new JTextField();
alan.addActionListener(this);

etiket=new Label();

c.setLayout(null);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

alan.setBounds(20,10,250,23);
git.setBounds(272,10,100,23);
etiket.setBounds(10,50,300,23);

c.add(alan);
c.add(git);
c.add(etiket);

show();
}

private void incele(String adres)
{
try {
InetAddress alandik=InetAddress.getByName(adres);
String cevir=alandik.toString();
etiket.setText(cevir);

}
catch(Exception e)
{
//
}
}

public void actionPerformed(ActionEvent e)
{
Object kaynak=e.getSource();
String al=alan.getText();

if (kaynak==git || kaynak==alan)
{
incele(al);
}
}

public static void main(String[] args)
{
siteAdresi a=new siteAdresi();
}

}​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Hicri Takvim

<?php
function Hicri($bugun_tarih){
// Aylar
$ay_adi[1] = "Muharrem";
$ay_adi[2] = "Safer";
$ay_adi[3] = "Rebi&#252;'l-Evvel";
$ay_adi[4] = "Rebi&#252;'l-Ahir";
$ay_adi[5] = "Cemaziye'l-Evvel";
$ay_adi[6] = "Cemaziye'l-Ahir";
$ay_adi[7] = "Recep";
$ay_adi[8] = "&#350;aban";
$ay_adi[9] = "Ramazan";
$ay_adi[10] = "Sevval";
$ay_adi[11] = "Zi'l-ka'de";
$ay_adi[12] = "Zi'l-Hicce";

$t_gunler = round(strtotime($bugun_tarih)/(60*60*24));
$h_yil = round($t_gunler/354.37419);
$kalan = $t_gunler-($h_yil*354.37419);
$h_aylar = round($kalan/29.531182);
$h_gunler = $kalan-($h_aylar*29.531182);
$h_yil = $h_yil+1389;
$h_aylar = $h_aylar+10;
$h_gunler = $h_gunler+23;

if ($h_gunler > 29.531188 and round($h_gunler)!=30){
$h_aylar = $h_aylar+1;
$h_gunler = Round($h_gunler-29.531182);
}
else
{
$h_gunler = Round($h_gunler);
}
if($h_aylar > 12){
$h_aylar = $h_aylar-12;
$h_yil = $h_yil+1;
}

echo "$h_gunler $ay_adi[$h_aylar] $h_yil";
}

$bugun_tarih = date("Y-m-d");
echo Hicri($bugun_tarih);
?>
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Sitenizde Radyonuz Olsun

<title> Macho_M HAZIRLAYAN VE SUNAN muratus</title>
<tr>
<td vAlign="center" align="middle" width="393" bgColor="#7D7DFF" height="9">
<object ID="MediaPlayer1" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject" width="763" height="61">
<param name="URL" value="http://quran.islamway.com/mishary1424/036.ram">
<param name="ShowAudioControls" value="True">
<param name="ShowPositionControls" value="False">
<param name="AutoSize" value="True">
<param name="ShowTracker" value="True">
<param name="ShowControls" value="True">
<param name="ShowStatusBar" value="True">
<param name="AutoRewind" value="True">
<param name="AutoStart" value="True"><embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" SRC="http://www.messagebay.com/cgi-bin/getwav.cgi?vchat.3d6f6d2863f2c.20020830060336.wav" name="MediaPlayer1" width="176" height="144">
</object>
</td>
</tr>
</table>​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Web sitenize midi çalici ekleyin

<bgsound src="DOSYA_ADI.mid" loop="1">​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Sitenize giren ziyaretçiler mail adresini listenize eklesinler

Scriptte;
<form method="POST" action="ekle.asp" name="">
<table width="51%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="42%" height="32">
<div align="right"><font size="2">E-Mail Listemize Katılın:</font></div>
</td>
<td width="58%" height="32">
<input type="text" name="EMail" size="20">
<input type="submit" value="Ekle" name="B1">
</td>
</tr>
</table>
</form>
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Html sayfalarin kodlarini gizle

<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>HTML Kodu</title>
</head>

<body>


<table width="450" cellpadding="0" cellspacing="0" border="0" height="74">

<tr>

<td width="381" valign="middle" >



<font class="main">

<center><script language="JavaScript"><!--

//////////////////////////////////////////////////////////////////
// Türkçeleştirme Scriptler.com //
//////////////////////////////////////////////////////////////////

/*--------------------------------------------------------------*/

//////////////////////////////////////////////////////////////////
// sourceLocker v1.0 LITE //
//////////////////////////////////////////////////////////////////
/* */
/* The redistribution of this application script is strictly */
/* prohibited by all its meanings. For any kind of use other */
/* than personal contact Infinity Interactive for permission */
/* of use. */
/* If you notice improper use of this software, please contact */
/* the company immediately at on of the emails listed in the */
/* source of this page. */
/* */
/* Thank you for using software of Infinity Interactive and we */
/* hope you enjoy it as much as we did developing it for you. */
/* */
/* Copyright(c)2002 Infinity Interactive. All Rights Reserved. */
/*--------------------------------------------------------------*/

i=0;
s=0;
num=0;
seq1="",seq2="";

ie = document.all?1:0;
ns = document.layers?1:0;
ns6 = document.getElementById?1:0;
svet = "";

function generate(what)
{
code = document.pad.text;
if (code.value.length>0) code.value = "<script language=JavaScript>m='"+escape(code.value)+"';d=unescape(m);document.write(d);<\/script>";
else if (code.value.length == "")
{
alert('Şifrelemek için HTML kodunu giriniz');
document.pad.text.focus();
}
}

function unlock()
{
if (document.pad.text.value.length == "")
{
alert('Kodu çözmek için HTML kodunu giriniz');
document.pad.text.focus();
}
else
{
code = document.pad.text.value;
pass = "";
pass = code.replace(/m=\'(.*)\';d=/g, "[[$1[[");
ut = pass.split("[[");
document.pad.text.value = unescape(ut[1]);
}
}
function selectCode()
{
padText=document.pad.text;
if(padText.value.length>0)
{
if (ie)
{
therange=padText.createTextRange();
therange.execCommand("Copy");
window.status="Kod Panoya Kopyalandı";
setTimeout("window.status=''",1800);
}
padText.focus();
padText.select();
}
else alert('Secim Yapmadınız')
}

function LightOn(what, message)
{
if (ie||ns6)
{
window.status=message;
what.style.backgroundColor='#EAEAEA';
what.style.cursor='hand';
}
else window.status=message;
}
function LightOut(what)
{
if (ie||ns6)
{
what.style.backgroundColor='white';
window.status='';
}
else window.status='';
}
// --></script>

<form method="post" name="pad" align="center">
<table border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111">
<tr>
<td align="right" valign="top" class="text">
<font face="Tahoma" size="2">HTML Kodu: </font>
</td>
<td width="484">
<textarea nowrap class="box" rows="11" name="text" cols="51" wrap></textarea></td>
</tr>
<tr>
<td width="116"></td>
<td width="484">
<input class="but" type="button" value="Kodu Şifrele" name="compileIt" onClick="generate()" onMouseOver="LightOn(this, 'Kodu Şifreleyin')" onMouseOut="LightOut(this)">
<input class="but" type="button" value="Kodu Seçin" name="select" onClick="selectCode()" onMouseOver="LightOn(this, 'Kodu Seçin')" onMouseOut="LightOut(this)">
<input class="but" type="button" value="Kodu Çözün" name="retur" onClick="unlock()" onMouseOver="LightOn(this, 'Kodu Çözün')" onMouseOut="LightOut(this)">
<input class="but" type="reset" value="Clear" name="clear" onMouseOver="LightOn(this, 'Temizleyin')" onMouseOut="LightOut(this)">
</td>
</tr>
<tr>
<td colspan="2" class="text" align="right"><font face="Tahoma">
<font size="1">TürkçeleştirmeScriptler.Com</font>
<font size="1">Credit: Svetlin Staev</font>
</td>
</tr>
</table>
</form></center>

</font>
</td>
</tr>
</table>

</body>

</html>​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Sayfanizda midi çaldirmak için ideal <!--

Start Of Midi Master Script -->
<!-- MIDI Player that allows you to choose songs/tracks -->
<!-- Instructions: Just put this script anywhere on your webpage
that you wish to have a user interface. -->

<Script Language="JavaScript">
<!-- Hiding

song = new Array()
var x = 0

song[1] = "Cool Midi # 1"
song[2] = "Cool Midi # 2"
song[3] = "Cool Midi # 3"
song[4] = "Cool Midi # 4"
song[5] = "Cool Midi # 5"
song[6] = "Cool Midi # 6"

function prev(){
if (x>1)
{ x--
document.midi.typein.value=song

}
}

function next(){
var max= song.length-1
if (x<max)
{ x++
document.midi.typein.value=song

}
}

function go(){
if (x != 0){
location.href='song'+x+'.mid'
}
}

function start(){
x=1
document.midi.typein.value=song

}

function end(){
x=song.length-1
document.midi.typein.value=song

}

function cls(){
document.midi.typein.value="Select Midi Song"
}
// Done Hiding -->
</Script>
<BODY Bgcolor="#ffffff" onload="cls()">
<Center>
<FORM Name="midi">
<INPUT NAME="typein" TYPE="text" SIZE="25" ALIGN=top><BR>
<font size=3 face="Comic Sans Ms">
<INPUT TYPE=Button Value="|<<" Align=left onclick="start()">
<INPUT TYPE=Button Value="<<" Align=left onclick="prev()">
<INPUT TYPE=Button Value="PLAY" Align=left onclick="go()">
<INPUT TYPE=Button Value=">>" Align=left onclick="next()">
<INPUT TYPE=Button Value=">>|" Align=left onclick="end()">
</FORM></font>
</Center>
</BODY>
</HTML>
<!-- End Of Midi Master Script -->

</body>
</html>

 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Mouseu takip eden saat

<!-- ONE STEP TO INSTALL SILLY CLOCK:

1. Copy the coding into the HEAD of your HTML document -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- Begin
colors = new Array('330099','00ff00','ff00ff'); //Clock face colors.
sCol = 'ff00ff'; //seconds colour.
mCol = '00ff00'; //minutes colour.
hCol = '330099'; //hours colour.
//Alter nothing below!
H = 'Hours..';
H = H.split('');
H = H.reverse();
M = 'Minutes..';
M = M.split('');
M = M.reverse();
S = 'Seconds..';
S = S.split('');
S = S.reverse();
dots = 12;
var Ypos = 0,Xpos = 0,Ybase = 0,Xbase = 0;
var ay = 0, ax = 0, Ay = 0, Ax = 0, by = 0, bx = 0, By = 0, Bx = 0, cy = 0, cx = 0, Cy = 0, Cx = 0, dy = 0, dx = 0, Dy = 0, Dx = 0;
count = 0;
count_a = 0;
move = 1;
ns = (document.layers)?1:0;
viz = (document.layers)?'hide':'hidden';
if (ns) {
for (i = 0; i < dots; i++)
document.write('<layer name=nface'+i+' top=0 left=0 bgcolor=#ffffff clip="0,0,3,3"></layer>');
for (i = 0; i < S.length; i++)
document.write('<layer name=nx'+i+' top=0 left=0 width=36 height=36><font face=Verdana size=2 color='+sCol+'><center>'+S+'</center></font></layer>');
for (i = 0; i < M.length; i++)
document.write('<layer name=ny'+i+' top=0 left=0 width=36 height=36><font face=Verdana size=2 color='+mCol+'><center>'+M+'</center></font></layer>');
for (i = 0; i < H.length; i++)
document.write('<layer name=nz'+i+' top=0 left=0 width=36 height=36><font face=Verdana size=2 color='+hCol+'><center>'+H+'</center></font></layer>');
}
else{
document.write('<div id="W" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < dots; i++) {
document.write('<div id="face" style="position:absolute;top:0px;left:0px;width:3px;height:3px;font-size:3px;background:#ffffff"></div>');
}
document.write('</div></div>');
document.write('<div id="X" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < S.length; i++) {
document.write('<div id="x" style="position:absolute;width:36px;height:36px;font-family:Verdana;font-size:12px;color:'+sCol+';text-align:center;padding-top:10px">'+S+'</div>');
}
document.write('</div></div>')
document.write('<div id="Y" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < M.length; i++) {
document.write('<div id="y" style="position:absolute;width:36px;height:36px;font-family:Verdana;font-size:12px;color:'+mCol+';text-align:center;padding-top:10px">'+M+'</div>');
}
document.write('</div></div>')
document.write('<div id="Z" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < H.length; i++) {
document.write('<div id="z" style="position:absolute;width:36px;height:36px;font-family:Verdana;font-size:12px;color:'+hCol+';text-align:center;padding-top:10px">'+H+'</div>');
}
document.write('</div></div>');
}
if (ns) {
window.captureEvents(Event.MOUSEMOVE);
function nsMouse(evnt) {
Ypos = evnt.pageY + 100;
Xpos = evnt.pageX + 100;
}
window.onMouseMove = nsMouse;
}
else{
function ieMouse() {
Ypos = event.y + 100;
Xpos = event.x + 100;
}
document.onmousemove = ieMouse;
}
function clock() {
time = new Date ();
secs = time.getSeconds();
sec = -1.57 + Math.PI * secs / 30;
mins = time.getMinutes();
min = -1.57 + Math.PI * mins / 30;
hr = time.getHours();
hrs = -1.575 + Math.PI * hr / 6 + Math.PI * parseInt(time.getMinutes()) / 360;
Ybase = 15;
Xbase = 15;
if (ns) {
document.layers["nx"+0].visibility = viz;
document.layers["ny"+0].visibility = viz;
document.layers["nz"+0].visibility = viz;
for (i = 0; i < S.length; i++) {
document.layers["nx"+i].top = ay - 12 + (i * Ybase) * Math.sin(sec);
document.layers["nx"+i].left = ax - 12 + (i * Xbase) * Math.cos(sec);
}
for (i = 0; i < M.length; i++) {
document.layers["ny"+i].top = by - 12 + (i * Ybase) * Math.sin(min);
document.layers["ny"+i].left = bx - 12 + (i * Xbase) * Math.cos(min);
}
for (i = 0; i < H.length; i++) {
document.layers["nz"+i].top = cy - 12 + (i * Ybase) * Math.sin(hrs);
document.layers["nz"+i].left = cx - 12 + (i * Xbase) * Math.cos(hrs);
}
for (i = 0; i < dots; ++i) {
document.layers["nface"+i].top = dy - 2 + (70 * Math.sin(-0.49+dots+i/1.9));
document.layers["nface"+i].left = dx + 4 + (70 * Math.cos(-0.49+dots+i/1.9));
}
}
else {
var scrll = document.body.scrollTop;
W.style.pixelTop = scrll;
X.style.pixelTop = scrll;
Y.style.pixelTop = scrll;
Z.style.pixelTop = scrll;
x[0].style.visibility=viz;
y[0].style.visibility = viz;
z[0].style.visibility = viz;
for (i = 0; i < S.length; i++) {
x.style.pixelTop = ay - 12 + (i * Ybase) * Math.sin(sec);
x.style.pixelLeft = ax - 12 + (i * Xbase) * Math.cos(sec);
}
for (i = 0; i < M.length; i++) {
y.style.pixelTop = by - 12 + (i * Ybase) * Math.sin(min);
y.style.pixelLeft = bx - 12 + (i * Xbase) * Math.cos(min);
}
for (i = 0; i < H.length; i++) {
z.style.pixelTop = cy - 12 + (i * Ybase) * Math.sin(hrs);
z.style.pixelLeft = cx - 12 + (i * Xbase) * Math.cos(hrs);
}
for (i = 0; i < dots; ++i) {
face.style.pixelTop = dy + 6 + (70 * Math.sin(-0.49 + dots + i / 1.9));
face.style.pixelLeft = dx + 4 + (70 * Math.cos(-0.49 + dots + i / 1.9));
}
}
}
function MouseFollow() {
ay = Math.round(Ay += ((Ypos) - Ay) * 4 / 15);
ax = Math.round(Ax += ((Xpos) - Ax) * 4 / 15);
by = Math.round(By += (ay - By) * 4 / 15);
bx = Math.round(Bx += (ax - Bx) * 4 / 15);
cy = Math.round(Cy += (by - Cy) * 4 / 15);
cx = Math.round(Cx += (bx - Cx) * 4 / 15);
dy = Math.round(Dy += (cy - Dy) * 4 / 15);
dx = Math.round(Dx += (cx - Dx) * 4 / 15);
clock();
setTimeout('MouseFollow()',10);
}
function colorstep() {
count +=move;
if (count >= dots) {count=0;count_a += move}
if (count_a == colors.length) count_a = 0;
if (ns) document.layers["nface"+count].bgColor = colors[count_a];
else face[count].style.background = colors[count_a];
setTimeout('colorstep()',100)
}
function StartAll() {
MouseFollow();
colorstep();
}
if (document.layers || document.all) window.onload = StartAll;
// End -->
</script>
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Link üzerine gelindiginde e-mail atma

1. Paste the coding into the BODY of your HTML document -->

<!-- STEP ONE: Copy this coding into the BODY of your HTML document -->

<BODY>

<CENTER>

<a href="" onMouseover="alert('Bana Mesaj Atamak İçin Bu linkin üzerine gelmeniz yeterli');
alert('Eğer Mesaj Atmak İstiyorsanız Tamamı tıklayın');

document.bgColor='black';
document.fgColor='White';
window.location.href='mailto:[email protected]?subject=siteye yorum!';">mesaj atmak için tıklayın!</a>
</CENTER>​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Hazır İndex

<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>Yeni Sayfa 1</title>
</head>

<body>

<p><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>www.musluman.biz</TITLE>
<META http-equiv=Content-Language content=tr>
<META content="Microsoft FrontPage 5.0" name=GENERATOR>
<META content=FrontPage.Editor.Document name=ProgId>
<META http-equiv=Content-Type content="text/html; charset=windows-1254"></HEAD>
<BODY bgColor=#000000>
<SCRIPT language=JavaScript>
if (document.all){
Cols=15;
Cl=24; //Peşpeşe geliş mesafeleri!
Cs=50; //Sayfaya enine yayılış mesafeleri!
Ts=16; //Rakamların büyüklükleri!
Tc='#008800';//Renk
Tc1='#00ff00';//Renk1
MnS=22; //Akış hızları!
MxS=25; //Akış hızları!
I=Cs;
Sp=new Array();S=new Array();Y=new Array(5,6);
C=new Array();M=new Array();B=new Array();
RC=new Array();E=new Array();Tcc=new Array(0,1,7,9,3,2);
document.write("<div id='Container' style='position:absolute;top:0;left:-"+Cs+"'>");
document.write("<div style='position:relative'>");
for(i=0; i < Cols; i++){
S=I+=Cs;
document.write("<div id='A' style='position:absolute;top:0;font-family:Arial;font-size:"
+Ts+"px;left:"+S+";width:"+Ts+"px;height:0px;color:"+Tc+";visibility:hidden'></div>");
}
document.write("</div></div>");

for(j=0; j < Cols; j++){
RC[j]=1+Math.round(Math.random()*Cl);
Y[j]=0;
Sp[j]=Math.round(MnS+Math.random()*MxS);
for(i=0; i < RC[j]; i++){
B='';
C=Math.round(Math.random()*1)+' ';
M[j]=B[0]+=C;
}
}
function Cycle(){
Container.style.top=window.document.body.scrollTop;
for (i=0; i < Cols; i++){
var r = Math.floor(Math.random()*Tcc.length);
E = '<font color='+Tc1+'>'+Tcc[r]+'</font>';
Y+=Sp;

if (Y > window.document.body.clientHeight){
for(i2=0; i2 < Cols; i2++){
RC[i2]=1+Math.round(Math.random()*Cl);
for(i3=0; i3 < RC[i2]; i3++){
B[i3]='';
C[i3]=Math.round(Math.random()*1)+' ';
C[Math.floor(Math.random()*i2)]=' '+' ';
M=B[0]+=C[i3];
Y=-Ts*M.length/1.5;
A.style.visibility='visible';
}
Sp=Math.round(MnS+Math.random()*MxS);
}
}
A.style.top=Y;
A.innerHTML=M+' '+E+' ';
}
setTimeout('Cycle()',20)
}
Cycle();
}
</SCRIPT>

<P> </P>
<script language="JavaScript">
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

//-->
</script>



<head>
<meta http-equiv="Content-Language" content="pt-br">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>HaCKeD by ZeMHeR</title>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>HaCKeD by Hacking Man</TITLE>
<META content=tr http-equiv=Content-Language>
<META content="text/html; charset=windows-1254" http-equiv=Content-Type>
<META NAME="GENERATOR" Content='FastPage Lojistik '>

<style fprolloverstyle>A:hover {color: #FF0000; font-weight: bold}
</style>
<script language="javascript">
<!--
function Is() {
var agent = navigator.userAgent.toLowerCase();
this.major = parseInt(navigator.appVersion);
this.minor = parseFloat(navigator.appVersion);
this.ns = ((agent.indexOf('mozilla')!=-1) && ((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible') == -1)));
this.ns2 = (this.ns && (this.major == 2));
this.ns3 = (this.ns && (this.major == 3));
this.ns4b = (this.ns && (this.major == 4) && (this.minor <= 4.03));
this.ns4 = (this.ns && (this.major >= 4));
this.ie = (agent.indexOf("msie") != -1);
this.ie3 = (this.ie && (this.major == 2));
this.ie4 = (this.ie && (this.major >= 4));
this.op3 = (agent.indexOf("opera") != -1);
}

var is = new Is()
if(is.ns4) {
doc = "document";
sty = "";
htm = ".document"

} else if(is.ie4) {
doc = "document.all";
sty = ".style";
htm = ""
}

var text1 = "", text2 = "", count = 0, count2=0;
msg = new Array();
msg[0] = "<font face=Courier New size=2><h1><center> </center></h1> ";
msg[1] = " <center><h1>Selamun Aleykum <font face=Tahoma color=#FFFFFF></font><font face=Tahoma color=#FFFFFF>Ve Rahmetullahi</font></h1></center>";
msg[2] = " <center><h1>Ve Berakatuh <font face=Tahoma color=#FFFFFF></font><font face=Tahoma color=#FFFFFF>Allah!</font></h1></center>";
msg[3] = " <center><h1>Sizleride <font face=Tahoma color=#FFFFFF></font><font face=Tahoma color=#FFFFFF>Bizleride</font></h1></center>";
msg[4] = " <center><h1>Affetsin <font face=Tahoma color=#FFFFFF></font><font face=Tahoma color=#FFFFFF> e-mail:[email protected] </font></h1></center>";
msg[5] = " <center><h1>Internetteki <font face=Tahoma color=#FFFFFF></font><font face=Tahoma color=#FFFFFF>
Kütüphaneniz!</font></h1></center>";
text = msg[0].split("");
function writetext(){
text1 ='<tt>'+text2 + '<b style="color:#00FF00">'+text[count]+'</tt>';
text2 += text[count];
fillHTML = eval(doc + '["nothing"]' + htm);
if(is.ns4) {
fillHTML.write(text1);
fillHTML.close();
} else {
fillHTML.innerHTML = text1;
}

if (!(count >= text.length-1)){
count+=1;
setTimeout('writetext()',1);
}

else{
count=0;
text2+='<p>'
if (count2!=6){
count2++
text = eval('msg['+count2+'].split("")');
setTimeout('writetext()',5);

}
}
}
<!-- Lojistik -->
//-->
</script>
</head>

<body text="#00FF00" vLink="#FF0000" aLink="#00FFFF" link="#FFFF00"
bgColor="#000000" onload="writetext();">

<div align="center">
<center>
<table border="0" width="650" height="228">
<tr>
<td align="left" width="767" height="224">
<div id="nothing" style="width: 807; height: 348">
</div>
<p> </p>
<p> </td>
</tr>
</table>
</center>
</div>
<p align="center"> </p>



</body>

</html>
<script language="JavaScript1.2">
var COLOR = 999999
var woot = 0
function stoploop() {
document.bgColor = '#000000';
clearTimeout(loopID);
}
function loopBackground() {
if (COLOR > 0) {
document.bgColor = '#' + COLOR
COLOR -= 111111
loopID = setTimeout("loopBackground()",1)
} else {
document.bgColor = '#000000'
woot += 10
COLOR = 999999
COLOR -= woot
loopID = setTimeout("loopBackground()",1)
}
}
//onClick="stoploop()"
function shake(n) {
if (self.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}
}
}
setTimeout("shake(1)",10000);
setTimeout("stoploop()",15000);
}
// End -->
</script>
<p> </p>

<span lang="en-us">
<object id="Player1" classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" height="44" width="694" align="left">
<param name="URL" value="http://quran.islamway.com/mishary1424/036.ram">
<param name="rate" value="1">
<param name="balance" value="0">
<param name="currentPosition" value="0">
<param name="defaultFrame" value>
<param name="playCount" value="1">
<param name="autoStart" value="-1">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="-1">
<param name="baseURL" value>
<param name="volume" value="100">
<param name="mute" value="0">
<param name="uiMode" value="full">
<param name="stretchToFit" value="-1">
<param name="windowlessVideo" value="-1">
<param name="enabled" value="-1">
<param name="enableContextMenu" value="-1">
<param name="fullScreen" value="0">
<param name="SAMIStyle" value>
<param name="SAMILang" value>
<param name="SAMIFilename" value>
<param name="captioningID" value>
<param name="enableErrorDialogs" value="0">
<param name="_cx" value="6562">
<param name="_cy" value="6535">
</object>
</span></font>
<html><HEAD>

<SCRIPT LANGUAGE="JavaScript1.2">

<!-- Begin
function shake(n) {
if (self.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}
}
}
}
// End -->
</script>
</HEAD>
<BODY bgcolor="red">
<center><font color="white">
<h1></h1>


<h3></h3>


<center>
<form>
<input type=submit onClick="shake(2)" value="tıklayın" dir="ltr">
</form></p>

</body>

</html>​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Otomatik Kuran

<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>Yeni Sayfa 4</title>
</head>

<body>

<p><font face="Abbese" color="#0000ff" size="2">
<embed align="left" src="http://quran.islamway.com/mishary1424/036.ram" width="116" height="31" type="audio/x-pn-realaudio-plugin" autostart="true" controls="ControlPanel" console="Clip1" border="0"></font></p>

</body>

</html>​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Bu html kodu sayesinde mouse niz renklenecek

<script language="JavaScript">

<!--
msg='mesaj';

font='Verdana,Arial';

size=2; // 1-7 only!

color='#ffffff';

speed=0.5;


//Alter nothing past here!!

ns=(document.layers);

ie=(document.all);

msg=msg.split('');

n=msg.length;

a=size*10;

ymouse=0;

xmouse=0;

scrll=0;

props="<font face="+font+" size="+size+" color="+color+">";

if (ns){

for (i=0; i < n; i++)

document.write('<layer name="nsmsg'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+msg+'</font></center></layer>');

}

if (ie){

document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

for (i=0; i < n; i++)

document.write('<div id="iemsg" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props+msg+'</font></div>');

document.write('</div></div>');

}

(ns)?window.captureEvents(Event.MOUSEMOVE):0;

function Mouse(evnt){

ymouse = (ns)?evnt.pageY+20-(window.pageYOffset):event.y+20;

xmouse = (ns)?evnt.pageX+20:event.x+20;

}

(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;

y=new Array();

x=new Array();

Y=new Array();

X=new Array();

for (i=0; i < n; i++){

y=0;

x=0;

Y=0;

X=0;

}

function assign(){

if (ie) outer.style.top=document.body.scrollTop;

for (i=0; i < n; i++){

var d=(ns)?document.layers['nsmsg'+i]:iemsg.style;

d.top=y+scrll;

d.left=x+(i*(a/2));

}

}

function ripple(){

scrll=(ns)?window.pageYOffset:0;

y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);

x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);

for (var i=1; i < n; i++){

y=Math.round(Y+=(y[i-1]-Y)*speed);

x=Math.round(X+=(x[i-1]-X)*speed);

}

assign();

setTimeout('ripple()',10);

}

if (ns||ie)window.onload=ripple;

// -->

</script>
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Sİtenizin Girişinde KURAN Dinletin

<OBJECT ID="MediaPlayer1" width=0 height=0
classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/
en/nsmp2inf.cab#Version=6,4,5,715"
standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject">
<PARAM NAME="AutoStart" VALUE="True">
<PARAM NAME="FileName" kuran ın bulunduğu adresi girin">
</OBJECT>​
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Sayfanin ön yüzünde açilan kapi animasyonu

<body><SCRIPT>
var width=document.body.clientWidth;
var height=document.body.clientHeight;

function doClickText(who,type,step,timeOut) {
document.getElementById(who).style.display="none";
if(type==0) {
reveal('revealDiv1',step,timeOut,0);
reveal('revealDiv2',step,timeOut,1);}
if(type==1) {
reveal('revealDiv1',step,timeOut,2);
reveal('revealDiv2',step,timeOut,3);}}
function reveal(who,step,timeOut,type) {
if(type==0)
var where="top";
if(type==1)
var where="bottom";
if(type==2)
var where="left";
if(type==3)
var where="right";
eval('var temp=document.getElementById(who).style.'+where);
temp=parseInt(temp);
if(type==0||type==1)
var checkWith=height/2;
if(type==2||type==3)
var checkWith=width/2;
if(-temp<checkWith) {
temp-=step;
eval('document.getElementById(who).style.'+where+'=temp;');
setTimeout("reveal('"+who+"',"+step+",'"+timeOut+"',"+type+")", timeOut);}
else {
document.getElementById(who).style.display="none";
document.body.scroll="yes";}}
function initReveal(type,div1bg,div2bg,div1bw,div2bw,div1bc,div2bc,step,timeOut,click) {
if(type==0) {
var bWhere1="border-bottom";
var bWhere2="border-top";
var putZero1="top:0px; left:0px";
var putZero2="bottom:0px; left:0px";
document.write('<div id="revealDiv1" style="z-index:100; display:block; position:absolute; '+putZero1+'; background:'+div1bg+' ; width:'+(width)+'; height:'+(height/2)+'; '+bWhere1+':'+div1bc+' solid '+div1bw+'px"></div>');
document.write('<div id="revealDiv2" style="z-index:100; display:block; position:absolute; '+putZero2+'; background:'+div2bg+' ; width:'+(width)+'; height:'+(height/2)+'; '+bWhere2+':'+div2bc+' solid '+div2bw+'px"></div>');
if(!click) {
reveal('revealDiv1',step,timeOut,0);
reveal('revealDiv2',step,timeOut,1);}

else {
clickText(type,step,timeOut);}}

if(type==1) {
var bWhere1="border-right";
var bWhere2="border-left";
var putZero1="top:0px; left:0px";
var putZero2="top:0px; right:0px";
document.write('<div id="revealDiv1" style="z-index:100; display:block; position:absolute; '+putZero1+'; background:'+div1bg+' ; width:'+(width/2)+'; height:'+(height)+'; '+bWhere1+':'+div1bc+' solid '+div1bw+'px"></div>');
document.write('<div id="revealDiv2" style="z-index:100; display:block; position:absolute; '+putZero2+'; background:'+div2bg+' ; width:'+(width/2)+'; height:'+(height)+'; '+bWhere2+':'+div2bc+' solid '+div2bw+'px"></div>');
if(!click) {
reveal('revealDiv1',step,timeOut,2);
reveal('revealDiv2',step,timeOut,3);}
else {
clickText(type,step,timeOut);}}
function clickText(type,step,timeOut) {
document.write('<div id="clickText" style="z-index:101; display:block; position:absolute; top:'+(height/2-clickh/2-clickb)+'; left:'+(width/2-clickw/2-clickb)+'"><table style="border:'+clickc+' solid '+clickb+'px; background:'+clickbg+' ;width:'+clickw+'px; height:'+clickh+'; '+clickFont+'; cursor:hand; cursor:pointer" onClick="doClickText(\'clickText\','+type+','+step+','+timeOut+')"><tr><td align="middle">'+clickt+'</td></tr></table></div>');}}
</SCRIPT>
<SCRIPT>
var clickw=170; // Width
var clickh=20; // Height
var clickb=2; // Border width
var clickc="#CCFFCC"; // Border color
var clickbg="#000000"; // Background color
var clickt="Siteye girmek icin tiklayin."; // Text to display
var clickFont="font-family:Tahoma,arial,helvetica; font-size:10pt; font-weight:bold; color:#FF0000"; // The font style of the text
new initReveal(0,'#CCFFCC','#CCFFCC',1,1,'#00FF00','#000000',3,10,true);
</SCRIPT><body>
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Sol Menü

<table border=1 bordercolor="black" style="cursor:crosshair">
<tr bgcolor="black">
<td>
<font style="cursor:crosshair" face="Arial" color=white>Müslüman</font>
</td>
</tr>
<tr bgcolor="white">
<td><center><p>
<form><input style="cursor:crosshair" type="button" name="anasayfa" onClick="self.location.href=('http://rockhll.sitemynet.com')" value="Ana Sayfa" style="background:white" style="cursor:crosshair"title="Copyright © 2004-2005 KoMeDiYe"></form>
<p>
<form><input style="cursor:crosshair" type="button" name="anasayfa" onClick="self.location.href=('http://rockhll.sitemynet.com')" value="Ana Sayfa" style="background:white" style="cursor:crosshair"title="Copyright © 2004-2005 KoMeDiYe"></form>
<p>
<form><input style="cursor:crosshair" type="button" name="anasayfa" onClick="self.location.href=('http://rockhll.sitemynet.com')" value="Ana Sayfa" style="background:white" style="cursor:crosshair" title="Copyright © 2004-2005 KoMeDiYe"></form>
<p>
<form><input style="cursor:crosshair" type="button" name="anasayfa" onClick="self.location.href=('http://rockhll.sitemynet.com')" value="Ana Sayfa" style="background:white" style="cursor:crosshair"title="Copyright © 2004-2005 KoMeDiYe"></form>
<p>
<form><input style="cursor:crosshair" type="button" name="anasayfa" onClick="self.location.href=('http://rockhll.sitemynet.com')" value="Ana Sayfa" style="background:white" style="cursor:crosshair"title="Copyright © 2004-2005 KoMeDiYe"></form>
<p>
</td>
</tr>
</table>
 

kadem

Profesör
Katılım
19 Ağu 2006
Mesajlar
1,622
Tepkime puanı
2
Puanları
0
Web siten açilinca Kuran çalsin mi?


<BGSOUND SRC="Dosyanın Adresi" LOOP=Kaç kere tekrarlanacağı>

ÖRNEK:
<BGSOUND SRC="../../Adnan - Salih/Cebimdekiler/Sesler/fahiha.wav" LOOP=50>
 
Üst