Faccine,Smilies,Emoticon
Gruppo su Faccialibro

Pagina su Faccialibro
Per problemi di tempo non tutte le rischiestre potranno essere esaudite
Ci scusiamo per il disagio.
Nuova Discussione
Rispondi
 
Pagina precedente | 1 | Pagina successiva
Stampa | Notifica email    
Autore

Info su layot di FFZ

Ultimo Aggiornamento: 25/09/2004 23:12
OFFLINE
Post: 30
Post: 4
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
Ciao a tutti! [SM=x39858]
Volevo chiedervi cosa è il layout di un forum e cosa succede e cosa cambia se modifico il layout del Fotum in avanzato, non plus extra, semplice, normale o molto semplice?
Ciao e grazie di tutto![SM=x39858]
23/09/2004 20:39
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 56.167
Post: 19.206
Registrato il: 15/09/2001
Sesso: Maschile
VocenelWeb
Forum Addicted
Ke si cambia l'aspetto del forum,ma nn puoi ancora xsonalizzarlo [SM=x40005]
X poterlo fare devi 1^ scegliere ql ti piaccia di + e poi creare 1 config & layout 2° ql riferimento ke copierai
Fatto qst lo devi associare al tuo forum
Dopo devi solo aggiungere tutte el modifike ke + t'aggradano [SM=x39884]

23/09/2004 20:46
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 31
Post: 5
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
Grazie mille!
23/09/2004 20:54
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 32
Post: 6
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
Un' altra domanda:
Per modificare il colore dei link al passaggio del mouse, come faccio?
Grazie di tutto!
23/09/2004 20:55
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 14.294
Post: 52
Registrato il: 23/10/2003
Città: ROMA
Età: 34
Sesso: Maschile
VocenelWeb
Member
Re:

Scritto da: Ditutto 23/09/2004 20.55
Un' altra domanda:
Per modificare il colore dei link al passaggio del mouse, come faccio?
Grazie di tutto!

lo vorrei sapere anch'io,visto che vorrei anch'io farlo.
23/09/2004 21:03
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 36
Post: 10
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
Non lo sa nessuno [SM=x39945]
25/09/2004 14:35
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
Nell'HTML di inizio o fine pagina devi inserire il codice che trovi qui:

http://www.dynamicdrive.com/dynamicindex5/rainbow.htm

Il file rainbow.js lo devi prima scaricare da quella pagina e poi lo devi uploadare sul tuo spazio web.

Quindi nel codice dove trovi scritto

src="rainbow.js"

dovrai scrivere l'URL del file sul tuo spazio web

src="http://www.tuosito.it/rainbow.js"

[Modificato da 3D 25/09/2004 17.25]

25/09/2004 17:22
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
Ovvero:

dopo averlo caricato su uno spazio web, lo metterai nell'html d'inizio o fine pagina, come preferisci.

il codice è:

<script src="http://TUOSPAZIOWEB/rainbow.js"></script>

ciao [SM=x39995]
25/09/2004 17:25
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 37
Post: 11
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
Ciao, grazie mille!
25/09/2004 17:37
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 38
Post: 12
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
Scusa il cosice che ho trovato nel file è questo; dove devo modificarle per mettere che al passaggio del mouse ci sia un giallo?


/************************************************************************/
/* Rainbow Links Version 1.03 (2003.9.20) */
/* Script updated by Dynamicdrive.com for IE6 */
/* Copyright (C) 1999-2001 TAKANASHI Mizuki */
/* takanasi@hamal.freemail.ne.jp */
/*----------------------------------------------------------------------*/
/* Read it somehow even if my English text is a little wrong! ;-) */
/* */
/* Usage: */
/* Insert '<script src="rainbow.js"></script>' into the BODY section, */
/* right after the BODY tag itself, before anything else. */
/* You don't need to add "onMouseover" and "onMouseout" attributes!! */
/* */
/* If you'd like to add effect to other texts(not link texts), then */
/* add 'onmouseover="doRainbow(this);"' and */
/* 'onmouseout="stopRainbow();"' to the target tags. */
/* */
/* This Script works with IE4,Netscape6,Mozilla browser and above only, */
/* but no error occurs on other browsers. */
/************************************************************************/


////////////////////////////////////////////////////////////////////
// Setting

var rate = 20; // Increase amount(The degree of the transmutation)


////////////////////////////////////////////////////////////////////
// Main routine

if (document.getElementById)
window.onerror=new Functi0n("return true")

var objActive; // The object which event occured in
var act = 0; // Flag during the action
var elmH = 0; // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg; // A color before the change
var TimerID; // Timer ID


if (document.all) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover = Mozilla_doRainbowAnchor;
document.onmouseout = Mozilla_stopRainbowAnchor;
}


//=============================================================================
// doRainbow
// This function begins to change a color.
//=============================================================================
function doRainbow(obj)
{
if (act == 0) {
act = 1;
if (obj)
objActive = obj;
else
objActive = event.srcElement;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}


//=============================================================================
// stopRainbow
// This function stops to change a color.
//=============================================================================
function stopRainbow()
{
if (act) {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}


//=============================================================================
// doRainbowAnchor
// This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function doRainbowAnchor()
{
if (act == 0) {
var obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}

if (obj.tagName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}


//=============================================================================
// stopRainbowAnchor
// This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function stopRainbowAnchor()
{
if (act) {
if (objActive.tagName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}


//=============================================================================
// Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
// This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_doRainbowAnchor(e)
{
if (act == 0) {
obj = e.target;
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
obj = obj.parentNode;
if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
break;
}

if (obj.nodeName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}


//=============================================================================
// Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
// This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_stopRainbowAnchor(e)
{
if (act) {
if (objActive.nodeName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}


//=============================================================================
// Change Color
// This function changes a color actually.
//=============================================================================
function ChangeColor()
{
objActive.style.color = makeColor();
}


//=============================================================================
// makeColor
// This function makes rainbow colors.
//=============================================================================
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?

// HSVtoRGB
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;

if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}




Scusa l' ignoranza e grazie ancora
25/09/2004 17:45
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
Questo codice, lo metti così com'è in uno spazio web, poi lo richiami col codice che ti ho dato, semplice.


25/09/2004 17:55
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 42
Post: 13
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
e per cambiare colore? Cosa faccio?
25/09/2004 18:41
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 43
Post: 14
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
Cioè il colore del link lo vorrei scegliere io
25/09/2004 18:53
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
Questo script cambia una miriade di colori, non posso certo mettermi a riprogrammare il.js lo capisci che è un lavoraccio? [SM=x39916]

[SM=x39915]

Chi si accontenta, gode, mio caro. [SM=x39997]
25/09/2004 21:39
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
OFFLINE
Post: 44
Post: 15
Registrato il: 12/06/2004
Età: 32
Sesso: Maschile
VocenelWeb
Ok, g5razie lo stesso, per ora ho messo quello, grazie mille!
25/09/2004 23:12
 
Email
 
Scheda Utente
 
Modifica
 
Cancella
 
Quota
Amministra Discussione: | Chiudi | Sposta | Cancella | Modifica | Notifica email Pagina precedente | 1 | Pagina successiva
Nuova Discussione
Rispondi
Feed | Forum | Bacheca | Album | Utenti | Cerca | Login | Registrati | Amministra
Tutti gli orari sono GMT+01:00. Adesso sono le 07:39. Versione: Stampabile | Mobile | Regolamento | Privacy
FreeForumZone [v.6.1] - Copyright © 2000-2024 FFZ srl - www.freeforumzone.com