WebSite X5Help Center

 
X5 Croatia
X5 Croatia
User

Row formats, paralax, video backround etc...  en

Author: X5 Croatia
Visited 1247, Followers 1, Shared 0  

PLEASE !!! Fix the parallax view in the responsive module... The function is not working at all... Only in computer viewes... Is it so hard?

Posted on the
5 ANSWERS - 3 USEFUL
Aleksej H.
Aleksej H.
Moderator

Hello. I sent a notification about your question to the company employees, expect an answer from them here in the comments.

Read more
Posted on the from Aleksej H.
X5 Croatia
X5 Croatia
User
Author

This is not even real parallax, make the same as bootstrap... Make the module that is responsive and please make more breakpoints option !!! PLEASE !!!

Read more
Posted on the from X5 Croatia
Incomedia
Stefano G.
Incomedia

Hello Croatia

Unfortunately, due to the way the Parallax in WebSite X5 works, it could not be activated in mobile. It would bring performance issues to the website which were unpleasant to see.

To solve this, the effect is disabled for the moment.

Should there be news in the future about improvement with this, it will be made known to the entire community through an official update

Thank you

Stefano

Read more
Posted on the from Stefano G.
X5 Croatia
X5 Croatia
User
Author

Omg Stefano... In this days of mobile you are disabling a effect at this moment :(

Read more
Posted on the from X5 Croatia
LUIZ G.
LUIZ G.
User

Caixa de código HTML e coloque o código abaixo. Indique o caminho da imagem e o resto é ajuste.

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.parallax {
/* The image used */
background-image: url("https://dominiodaimagem.com/images/image.jpg");

/* Set a specific height */
min-height: 350px;

/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>

<p> </p>

<div class="parallax"></div>

<div style="height:5px;background-color:white;font-size:18px">

</div>

</body>
</html>

Read more
Posted on the from LUIZ G.