WebSite X5Help Center

12 ANSWERS - 4 USEFUL
Stiac Engineering
Stiac Engineering
User

Ciao Giancarlo,

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

Read more
Posted on the from Stiac Engineering
Giancarlo B.
Giancarlo B.
User
Author

Intrusione il correttore wink

Read more
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! 

Read more
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

.

Read more
Posted on the from  ‪ KolAsim ‪ ‪
Giancarlo B.
Giancarlo B.
User
Author

perfetto Kol come sempre!!!

Read more
Posted on the from Giancarlo B.
Giancarlo B.
Giancarlo B.
User
Author
 ‪ 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/

Read more
Posted on the from Giancarlo B.
Giancarlo B.
Giancarlo B.
User
Author

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;

Read more
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...
.

Read more
Posted on the from  ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

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

Read more
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

Read more
Posted on the from  ‪ KolAsim ‪ ‪