WebSite X5Help Center

12 ODPOWIEDZI - 4 USEFUL
Stiac Engineering
Stiac Engineering
User

Ciao Giancarlo,

perdona l'intrusione e curiosità, che state cercando di fixare?

Czytaj więcej
Posted on the from Stiac Engineering
Giancarlo B.
Giancarlo B.
User
Autor

Intrusione il correttore wink

Czytaj więcej
Posted on the from Giancarlo B.
Stiac Engineering
Stiac Engineering
User

Oh grazie per il chiarimento! Avevo visto l'uscita di nuovi oggetti e mi ero incuriosito.

Vediamo che dice il buon KolAsim! 

Czytaj więcej
Posted on the from Stiac Engineering
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

... OK ... grazie Giancarlo dell'esempio, ed ecco il codice rispetto alla struttura attuale:

<script>
//--------------f--K-----------------------
$( document ).ready(function() {//K>
fullscreenK()
}); //K<<
//--------------f--K1-----------------------
$( window ).resize(function() {//K1>
setTimeout(function(){ //K2>
fullscreenK()
}, 1000); //K2<<
});//K1<<
//--------------f--K3-----------------------
function fullscreenK() { //K3>
hK = window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;
hhK=$("#imHeader").height();
$("#imCell_77,#imCell_77 div").css("max-height",hK-hhK);
$("#imCell_77").css("width","100%");
} //K3<<
</script>

...

.

... un variante permetterebbe di portare lo slider al top con header semitrasparente...

.

ciao

.

Czytaj więcej
Posted on the from  ‪ KolAsim ‪ ‪
Giancarlo B.
Giancarlo B.
User
Autor

perfetto Kol come sempre!!!

Czytaj więcej
Posted on the from Giancarlo B.
Giancarlo B.
Giancarlo B.
User
Autor
 ‪ KolAsim ‪ ‪
... un variante permetterebbe di portare lo slider al top con header semitrasparente... . ciao .

esatto come in questo caso con header trasparente

https://www.giancafoto.it/

Czytaj więcej
Posted on the from Giancarlo B.
Giancarlo B.
Giancarlo B.
User
Autor

nel caso io mettessi il codice per spostare il margine della pagina sotto all'header dovrei compensare il codice dei 100px di quest'ultimo

margin-top: -100px !important;

Czytaj więcej
Posted on the from Giancarlo B.
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

... il mio codice calcolerebbe dinamicamente...
... non potendo generalizzare, se riesci a preparare un esempio semplice con sildeshow (2-3 img) per le freccette di Vincenzo e con piccola animazione dei contenuti si potrebbe valutare meglio... 
> possibilmente  con header già impostato in semitrasparenza senza codice...
.

Czytaj więcej
Posted on the from  ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

.... sono fuori, ... a domami. ...   ciao 

Czytaj więcej
Posted on the from  ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

... OK, ...perfetto per la semitrasparenza (non so se forse si potrebbe assegnare anche da programma)...

... ...ed ecco il codice per questa tua struttura, (con contenuti, frecce ecc. giustificati):

<script>
//--------------f--K-----------------------
$( document ).ready(function() {//K>
fullscreenK()
}); //K<<
//--------------f--K1-----------------------
$( window ).resize(function() {//K1>
setTimeout(function(){ //K2>
fullscreenK()
}, 1000); //K2<<
});//K1<<
//--------------f--K3-----------------------
function fullscreenK() { //K3>
hK = window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;
hhK=$("#imHeader").height();
$("#imCell_78,#imCell_78 div").css("max-height",hK);
$("#imCell_78").css("margin-top",-hhK);
} //K3<<
</script>

...................................

ciao

Czytaj więcej
Posted on the from  ‪ KolAsim ‪ ‪