GIOCO DI GRAFICA!

Reply
Calendario Dinamico
view post Posted on 21/8/2007, 11:38Quote
Avatar

Image and video hosting by TinyPic A Little Princess...

Group: Admin
Posts: 5124
Location: LaCcHiArElLa (Mi)


Status: Offline: ultima azione eseguita il 29/6/2009, 21:36


Eccomi ritornata con un nuovo Tutorial..ci sto prendendo gusto!^^
Vabbè ora impareremo a fare un bel calendarietto dinamico^^
Molti vogliono imparare a farlo e io soddisferò la vostra richiesta^^

Incominciamo:
Iniziamo preparando la nostra base.
Apriamo un nuovo documento 160x260, e creiamo il soggetto del nostro calendario.
Io ho usato Lindsay Lohan come cavia :shifty:
image

Ora dobbiamo preparare l'area nella quale inseriremo i giorni della settimana.
Per fare ciò dobbiamo tracciare quest'area conla selezione, quindi selezioniamola e tracciamola.
image
(Prendete pure in considerazione la mia di area: copiatela e incollatela poi tracciate l'area seguendo la mia traccia^^)

Però ora abbiamo solo una selezione...come procediamo?
Procediamo riempiendo l'interno della selezione di bianco. Fatto ciò dobbiamo diminuire l'opacità, fatelo a piacere, comunque io l'ho diminuita fino al 25 xcento.
image

Se tutto vi va bene abbiamo concluso la nostra base!!
image

Ora la cosa più importante: I giorni!!!!!!
Non vi preoccupate è la cosa più facile che ci sia!
Dovete copiare lo Script sotto Spoiler:
CODICE
<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-1252">
<title>Inserite qui il NOME  del CALENDARIO</title>
</head>

<body link="#ffffff" vlink="#ffffff" alink="#ffffff" bgcolor="#000000">

     <table border="0" cellspacing="0" cellpadding="0" width="160" height="260" background="LINK IMMAGINE" style="border-collapse: collapse" align="center">
       <tr>
         <td height="60" width="65">
         <td colspan="100" height="130"><br>
         </td>
       </tr>
       <tr>
         <td width="25" height="55">
           <p></p>
           <p><br>
             <br>
             <br>
             <br>
             <br>
         </td>
         <td align="center" valign="top" width="20" height="55">
           <script language="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!--//Begin
monthnames = new Array(
"Gennaio",
"Febbraio",
"Marzo",
"Aprile",
"Maggio",
"Giugno",
"Luglio",
"Agosto",
"Settembre",
"Ottobre",
"Novembre",
"Dicembre");
var linkcount=0;
function addlink(month, day, href) {
var entry = new Array(3);
entry[0] = month;
entry[1] = day;
entry[2] = href;
this[linkcount++] = entry;
}
Array.prototype.addlink = addlink;
linkdays = new Array();
monthdays = new Array(12);
monthdays[0]=31;
monthdays[1]=28;
monthdays[2]=31;
monthdays[3]=30;
monthdays[4]=31;
monthdays[5]=30;
monthdays[6]=31;
monthdays[7]=31;
monthdays[8]=30;
monthdays[9]=31;
monthdays[10]=30;
monthdays[11]=31;
todayDate=new Date();
thisday=todayDate.getDay();
thismonth=todayDate.getMonth();
thisdate=todayDate.getDate();
thisyear=todayDate.getYear();
thisyear = thisyear % 100;
thisyear = ((thisyear < 50) ? (2000 + thisyear) : (1900 + thisyear));
if (((thisyear % 4 == 0)
&& !(thisyear % 100 == 0))
||(thisyear % 400 == 0)) monthdays[1]++;
startspaces=thisdate;
while (startspaces > 7) startspaces-=7;
startspaces = thisday - startspaces + 1;
if (startspaces < 0) startspaces+=7;
document.write("<FONT face='verdana'>");<!--Font Face-->
document.write("<table border=0 " );<!--Border size-->
document.write("style='font-size : 10px; color : #000000;' cellpadding=0 cellspacing=1>");<!--Border color, font size, cell padding, cellspacing and font color-->

document.write("<tr><td colspan=7><center>"
+ monthnames[thismonth] + " " + thisyear
+ "</center></td></tr>");
document.write("<tr>");
document.write("<td align=center><font color=#000000>D</td>");<!--The color here and below are for each week day-->
document.write("<td align=center><font color=#000000>L</td>");
document.write("<td align=center><font color=#000000>M</td>")
document.write("<td align=center><font color=#000000>M</td>");
document.write("<td align=center><font color=#000000>G</td>");
document.write("<td align=center><font color=#e56905>V</td>");
document.write("<td align=center><font color=#e56905>S</td>");<!--Last color chage here-->
document.write("</tr>");
document.write("<tr>");
for (s=0;s<startspaces;s++) {
document.write("<td>-</td>");
}
count=1;
while (count <= monthdays[thismonth]) {
for (b = startspaces;b<7;b++) {
linktrue=false;
document.write("<td>");
for (c=0;c<linkdays.length;c++) {
if (linkdays[c] != null) {
if ((linkdays[c][0]==thismonth + 1) && (linkdays[c][1]==count)) {
document.write("<a href=\"" + linkdays[c][2] + "\">");
linktrue=true;
}
}
}
if (count==thisdate) {
document.write("<font color='#COLORE DEL GIORNO CORRENTE'>");<!--todays date color-->
}
if (count <= monthdays[thismonth]) {
document.write(count);
}
else {
document.write(" ");
}
if (count==thisdate) {
document.write("</font>");
}
if (linktrue)
document.write("</a>");
document.write("</td>");
count++;
}
document.write("</tr>");
document.write("<tr>");
startspaces=0;
}
document.write("</table>");
document.write("</FONT>");
           </script>
         </td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="1" height="55"></td>
         <td width="89" height="55"></td>
       </tr>
     </table>
   </div>
   <p align="center" style="line-height: 100%; margin-top: 2; margin-bottom: 2"><font face="verdana" size="1">
   <a href="LINK DEL VOSTRO SITO" title="NOME DEL VOSTRO SITO" target="_blank" style="text-decoration: none"><font color="#COLORE DEL FONT">
     Created by IL VOSTRO NICK</font></a></font>
   <p align="center" style="line-height: 100%; margin-top: 2; margin-bottom: 2">
</body>

</html>


Benissimo abbiamo il nostro codice.
Ora dobbiamo compilare le cose basilari:

Dove c'è scritto:

CODICE
<title>Inserite qui il NOME  del CALENDARIO</title>

Inseriamo il nome del calendario ovviamente.

CODICE
<table border="0" cellspacing="0" cellpadding="0" width="160" height="260" background="<u>LINK IMMAGINE</u>" style="border-collapse: collapse" align="center">

Inseriamo il Link dell'immagine, semplicemente hostandola.

CODICE
<a href="LINK DEL VOSTRO SITO" title="NOME DEL VOSTRO SITO" target="_blank" style="text-decoration: none"><font color="#COLORE DEL FONT">

Inseriamo il link di qualunque vostro sito/blog/forum, inserite il nome del vostro sito/blog/forum e inserite il colore del font.

CODICE
Created by IL VOSTRO NICK</font></a></font>
   <p align="center" style="line-height: 100%; margin-top: 2; margin-bottom: 2">

Inseriamo il CopyRight.

Il mio risultato è questo:
Clicca per anteprima.


Ovviamente si possono cambiare i colori del font, la grandezza, la posizione ecc...dei giorni e dei numeri.
Ma questo ve lo farò imparare nel prossimo Tutorial che spero di postarlo al più presto!



image

image image image
NoN Mandarmi MP di spam e catene.
NoN Rubare e spacciare x tuoi i lavori della mia firma.
NoN invitarmi a nessun Forum.
image
Avatar & Firma by ~ M a r i k a


 
P_MSG P_EMAIL Top
view post Posted on 1/2/2008, 14:55Quote
Avatar

Millennium Member

Group: Member
Posts: 1991
Location: Il MiO pIccOlO mOnDo RoSa...


Status: Utente anonimo


bel tutorial

=)Benvenuti nella mia firma(=


image


image


image


image


image


image


[

image


image


image


image
image

image


image


(__/)
(='.'=) Questo è Bunny. Ho deciso di aiutarlo nella sua
(")_(") missione di conquista del mondo. COPIA E INCOLLA DOVE VUOI PER AIUTARLO NEL SUO INTENTO!!!!!!!!!!
(__/)
( X.x ) Questo era Bunny.
(v)(v) Sfortunatamente, bunny è MORTO.
Bunny è stato ucciso dall'FBI mentre cercava di dominare il mondo. COPIA E INCOLLA DOVE VUOI PER RICORDARLO come veterano di guerra.
(__/)
( o.o ) Questo è Bunny. Bunny è RESUSCITATO.
(")_(") Bunny adesso è molto più determinato a conquistare l'universo ed è anche più spietato di prima. Copia Bunny dove vuoi per aiutarlo a dominare l'universo.
 
P_MSG P_EMAIL P_MSN P_YIM Top
view post Posted on 2/6/2008, 12:30Quote
Avatar

..ƒαву...

Group: Member
Posts: 206
Location: ...Dai sOgni...


Status: Offline: ultima azione eseguita il 15/12/2009, 07:30


scusate...a me nn mi riesce :(...ekko il mio sploider gia fatto:

<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-1252">
<title>BIMBA CALENDARIO</title>
</head>

<body link="#ffffff" vlink="#ffffff" alink="#ffffff" bgcolor="#000000">

");
document.write("");
document.write("");<!--The color here and below are for each week day-->
document.write("");
document.write("")
document.write("");
document.write("");
document.write("");
document.write("");<!--Last color chage here-->
document.write("");
document.write("");
for (s=0;s<startspaces;s++) {
document.write("");
}
count=1;
while (count <= monthdays[thismonth]) {
for (b = startspaces;b<7;b++) {
linktrue=false;
document.write("");
count++;
}
document.write("");
document.write("");
startspaces=0;
}
document.write("


<p>








<script language="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!--//Begin
monthnames = new Array(
"Gennaio",
"Febbraio",
"Marzo",
"Aprile",
"Maggio",
"Giugno",
"Luglio",
"Agosto",
"Settembre",
"Ottobre",
"Novembre",
"Dicembre");
var linkcount=0;
function addlink(month, day, href) {
var entry = new Array(3);
entry[0] = month;
entry[1] = day;
entry[2] = href;
this[linkcount++] = entry;
}
Array.prototype.addlink = addlink;
linkdays = new Array();
monthdays = new Array(12);
monthdays[0]=31;
monthdays[1]=28;
monthdays[2]=31;
monthdays[3]=30;
monthdays[4]=31;
monthdays[5]=30;
monthdays[6]=31;
monthdays[7]=31;
monthdays[8]=30;
monthdays[9]=31;
monthdays[10]=30;
monthdays[11]=31;
todayDate=new Date();
thisday=todayDate.getDay();
thismonth=todayDate.getMonth();
thisdate=todayDate.getDate();
thisyear=todayDate.getYear();
thisyear = thisyear % 100;
thisyear = ((thisyear < 50) ? (2000 + thisyear) : (1900 + thisyear));
if (((thisyear % 4 == 0)
&& !(thisyear % 100 == 0))
||(thisyear % 400 == 0)) monthdays[1]++;
startspaces=thisdate;
while (startspaces > 7) startspaces-=7;
startspaces = thisday - startspaces + 1;
if (startspaces < 0) startspaces+=7;
document.write("");<!--Font Face-->
document.write("<table border=0 " );<!--Border size-->
document.write("style='font-size : 10px; color : #000000;' cellpadding=0 cellspacing=1>");<!--Border color, font size, cell padding, cellspacing and font color-->

document.write("
"
+ monthnames[thismonth] + " " + thisyear
+ "
DL<font color=#000000>M<font color=#000000>M<font color=#000000>G<font color=#e56905>V<font color=#e56905>S
-");
for (c=0;c<linkdays.length;c++) {
if (linkdays[c] != null) {
if ((linkdays[c][0]==thismonth + 1) && (linkdays[c][1]==count)) {
document.write("");
linktrue=true;
}
}
}
if (count==thisdate) {
document.write("<font color='#COLORE DEL GIORNO CORRENTE'>");<!--todays date color-->
}
if (count <= monthdays[thismonth]) {
document.write(count);
}
else {
document.write(" ");
}
if (count==thisdate) {
document.write("");
}
if (linktrue)
document.write("
");
document.write("
");
document.write("");
</script>
</td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="1" height="55"></td>
<td width="89" height="55"></td>
</tr>
</table>

<p align="center" style="line-height: 100%; margin-top: 2; margin-bottom: 2">
<font color="#0000">
Created by Faby in pioggiadigrafica ©

<p align="center" style="line-height: 100%; margin-top: 2; margin-bottom: 2">
</body>

</html>


OddiO sOno inkapace:( rispondetemi plzzzzzzz

C'era una vOlta...
in un paese mOltO ma mOltO cOlOratO,
una pikkOla città mOltO ma mOltO sOlare...
ma nOnOstante il sOle illuminasse le varie
casine la ittà rimaneva scOlOrita..priva di cOlOri...
la fOndatrice di quest'ultima si kiese
cOme pOteva cOlOrarla...e ke nOme darle...
pensO' a lungO...e dOpO cirka
due giOrni...


image



All'arrivO del primO abitante,
il cielO si OscurO' e quel sOle tantO
lucente scOmparve all'imprOvvisO...
Dalle nubi le unike 2 abitanti della città
viderO apparire una fata...ke cOn la sua
bakketta magica scaturì un tempOrale...
Quel tempOrale tant aspettatO...



image



Era una piOggia diversa...
dalle altre città...era una piOggia
cOlOrata...cOn la quale si pOtè
abbellire la città finO a farla diventare
famOsa...^^...
e cOsi gli abitanti aumentarOnO e
insieme...cOn i cOlOri della piOggia
crearOnO la lOrO GRAFIKA...


image



kOsa aspetti a far parte anke tu di qst città?!? li trOverai:

imageScuOla di Grafica per ki utilizza PSP e vuOle imparare nuOve cOse...

imageScuOla di Grafica per ki è alle prime armi cOn PSP e vuOle diventare una graficante mOdellO^^
imageTutOrial per PSP per pOter imparare da sOli^^

imageCreaziOni grafike cOndivise

imageContest per fOrum per mettere alla prOva il tuO fOrum e vedere quantO vale!^^

imageCOntest Grafici per essere valutati nel campO della grafika...

imageValutaziOni Gratuite senza PRESENTAZIONE per il tuO fOrum da persOne e se ne intendOnO^^

E per ki nn è interessat alla grafika ci sOnO seziOni dispOnibili:



imageOff tOpic dOve pOter chiakkierare liberamente di tuttO qll ke vOlete...

imageIniziative e prOgetti cOntrO prOblemi esistenziali e gravi^^

image Rikiedere aiuti per il prOpriO fOrum per la grafika O persOnali...

...Per il restO nn pOssO anticiparvi tuttO^^...



image



TESSERINI



image



image
 
P_MSG P_EMAIL P_WEBSITE P_MSN Top
ambramelly
view post Posted on 16/8/2009, 15:19Quote

Utente cancellato






l'ho provato marika ma non mi funziona
sigh!!
 
Top
3 replies since 21/8/2007, 11:38
 

load
Fast reply

 
 
 

Enable emoticons
Clickable Smilies
Show All


Nickname:      Email:



 

 
 




Affiliati
imagePhoto Sharing and Video Hosting at PhotobucketImage and video hosting by TinyPicImage Hosted by ImageShack.usPhoto Sharing and Video Hosting at Photobucket


It's Our Time Now! Skin By ~ Asthenia © The Resource.
Icons © Sweetie.
Brushes © Ransie.