Cria area de banners principal/mobile

This commit is contained in:
ThiagoDuutra 2022-12-08 17:47:46 -03:00
parent fc002d2cee
commit fd640d5770
10 changed files with 177 additions and 227 deletions

View File

@ -1,81 +1,122 @@
module.exports = { module.exports = {
contentPlaceHolders: [ contentPlaceHolders: [
{ {
// Registra o contentPlaceholder id: "banners-principais-desktop",
id: "htmlSeo",
objects: [
// Registra os objetos vtex
{
type: "html",
name: "Html SEO",
contents: [],
},
],
},
{
id: "slide-principal",
objects: [ objects: [
{ {
type: "banner", type: "banner",
name: "banner principal", name: "Banner Principal Desktop 01",
contents: [ contents: [
{ {
name: "banner principal content", name: "Banner Principal Desktop 01",
active: true, active: true,
type: "image", type: "image",
file: "slide-principal.png", file: "banner-principal-desktop.png",
width: 1920, width: 1440,
height: 500, height: 532,
// "category": "*",
// "brand": "*"
// "period": ""
}, },
], ],
}, },
{ {
type: "banner", type: "banner",
name: "banner principal-2", name: "Banner Principal Desktop 02",
contents: [ contents: [
{ {
name: "banner principal content", name: "Banner Principal Desktop 02",
active: true, active: true,
type: "image", type: "image",
file: "slide-principal.png", file: "banner-principal-desktop.png",
width: 1920, width: 1440,
height: 500, height: 532,
},
],
},
{
type: "banner",
name: "Banner Principal Desktop 03",
contents: [
{
name: "Banner Principal Desktop 03",
active: true,
type: "image",
file: "banner-principal-desktop.png",
width: 1440,
height: 532,
},
],
},
{
type: "banner",
name: "Banner Principal Desktop 04",
contents: [
{
name: "Banner Principal Desktop 04",
active: true,
type: "image",
file: "banner-principal-desktop.png",
width: 1440,
height: 532,
}, },
], ],
}, },
], ],
}, },
{ {
id: "slide-principal-mobile", id: "banners-principais-mobile",
objects: [ objects: [
{ {
type: "banner", type: "banner",
name: "banner principal mobile", name: "Banner Principal mobile 01",
contents: [ contents: [
{ {
name: "banner principal mobile content", name: "Banner Principal mobile 01",
active: true, active: true,
type: "image", type: "image",
file: "slide-principal-mobile.png", file: "banner-principal-mobile.png",
width: 500, width: 375,
height: 500, height: 342,
}, },
], ],
}, },
{ {
type: "banner", type: "banner",
name: "banner principal mobile 2", name: "Banner Principal mobile 02",
contents: [ contents: [
{ {
name: "banner principal mobile 2 content", name: "Banner Principal mobile 02",
active: true, active: true,
type: "image", type: "image",
file: "slide-principal-mobile.png", file: "banner-principal-mobile.png",
width: 500, width: 375,
height: 500, height: 342,
},
],
},
{
type: "banner",
name: "Banner Principal mobile 03",
contents: [
{
name: "Banner Principal mobile 03",
active: true,
type: "image",
file: "banner-principal-mobile.png",
width: 375,
height: 342,
},
],
},
{
type: "banner",
name: "Banner Principal mobile 04",
contents: [
{
name: "Banner Principal mobile 04",
active: true,
type: "image",
file: "banner-principal-mobile.png",
width: 375,
height: 342,
}, },
], ],
}, },

Binary file not shown.

After

Width:  |  Height:  |  Size: 599 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

View File

@ -1,38 +1,18 @@
import { import slickConfig from "Config/slick";
bannerHome,
barraDeVantagens,
naveguePorCategorias,
} from "App/functions/slide";
import InstagramGallery from "../components/InstagramGallery";
export default class Home { export default class Home {
constructor() { constructor() {
bannerHome(".main-gallery"); this.selectors();
barraDeVantagens(".tipbar ul"); this.createSliders();
naveguePorCategorias(".categorias-home .categorias");
new InstagramGallery({
gallery: ".instagramGallery__photos",
account: "agenciam3",
limit: 6,
});
} }
naveguePorCategorias() { selectors() {
// preencher titulos this.desktopMainBanners = $(".main-banners__desktop");
var $container = $(".home-categories .categorias"); this.mobileMainBanners = $(".main-banners__mobile");
$container.find(".box-banner").each(function (i, el) { }
const $banner = $(el);
let name;
name = $banner.find("img").prop("alt"); createSliders() {
let $titulo = $("<span />", { this.desktopMainBanners.slick(slickConfig.home.desktopMainBanners);
text: name, this.mobileMainBanners.slick(slickConfig.home.mobileMainBanners);
class: "nome-categoria",
});
$banner.find("img").after($titulo);
});
slide.naveguePorCategorias($container);
} }
} }

View File

@ -1,18 +1,18 @@
export default { export default {
home: { home: {
bannerDesktop: { desktopMainBanners: {
dots: true, dots: true,
arrows: false, arrows: true,
pauseOnHover: false, pauseOnHover: true,
autoplay: true, autoplay: true,
autoplaySpeed: 6000, autoplaySpeed: 5000,
}, },
bannerMobile: {
mobileMainBanners: {
dots: true, dots: true,
arrows: false, arrows: true,
pauseOnHover: false,
autoplay: true, autoplay: true,
autoplaySpeed: 6000, autoplaySpeed: 5000,
}, },
}, },
general: { general: {

View File

@ -1,177 +1,97 @@
/***************************************************************/
/**-- Home ---------------------------------********************/
/*-------------------------------------------------------------*/
.home { .home {
.main-gallery { .main-banners {
> div {
&:not(.slick-initialized) {
.box-banner {
&:not(:first-child) {
display: none;
}
}
}
&.desktop {
@include mq(md, max) {
display: none;
}
}
&.mobile {
@include mq(md, min) {
display: none;
}
}
}
img { img {
width: 100%; width: 100%;
} }
&__desktop {
@include mq(md, max) {
display: none;
}
}
.slick-next, &__mobile {
.slick-prev { @include mq(md, min) {
@extend .sprite; display: none;
background-color: transparent; }
border: none; }
cursor: pointer;
font-size: 0; .slick-arrow {
outline: none;
padding: 0;
position: absolute; position: absolute;
top: 40%; top: 50%;
transform: scale(0.7); transform: translateY(-50%);
z-index: 1; z-index: map-get($z-index, flag-prateleira);
padding: 0;
border: 0;
outline: 0;
font-size: 0;
background-color: transparent;
cursor: pointer;
@extend .sprite;
@include mq(md, max) {
transform: translateY(-50%) scale(0.7);
}
}
.slick-prev {
left: 24px;
@extend .sprite-left-arrow-icon;
@include mq(md, max) {
left: 16px;
transform-origin: left;
}
} }
.slick-next { .slick-next {
@extend .sprite; right: 24px;
@extend .sprite-circled-arrow-right;
left: auto;
right: 8px;
}
.slick-prev { @extend .sprite-right-arrow-icon;
@extend .sprite;
@extend .sprite-circled-arrow-left; @include mq(md, max) {
right: auto; right: 16px;
left: 8px; transform-origin: right;
}
} }
.slick-dots { .slick-dots {
bottom: 20px; display: flex !important;
align-items: center;
justify-content: center;
position: absolute; position: absolute;
pointer-events: none; left: 0;
text-align: center; bottom: 14px;
margin: 0;
width: 100%; width: 100%;
z-index: map-get($z-index, flag-prateleira);
&, @include mq(md, max) {
li { bottom: 9px;
align-items: center;
display: flex !important;
justify-content: center;
} }
li { li {
display: inline-block; display: flex;
margin: 0 4px; margin: 0 4px;
&.slick-active {
button {
width: 16px;
height: 16px;
border: 1px solid $color-white;
background: transparent;
}
}
} }
button { button {
background-color: #142032;
border: none;
cursor: pointer;
height: 10px;
outline: none;
padding: 0;
pointer-events: all;
transition: all 0.15s ease-in-out;
width: 10px; width: 10px;
} height: 10px;
padding: 0;
.slick-active { border: 0;
button { outline: 0;
background-color: #f71963; background: $color-white;
height: 16px;
width: 16px;
}
}
}
}
.banner {
&.desktop {
@include mq(md, max) {
display: none;
}
}
&.mobile {
@include mq(md, min) {
display: none;
}
}
img {
width: 100%;
}
}
.mosaico-home,
.mosaico-home-footer {
@include mq(md, max) {
padding: 0;
}
@include mq_range(md, xl) {
max-width: 100%;
}
.row {
@include mq(md, max) {
margin: 0;
}
}
}
.mosaico-home {
> .row {
@include mq(md, min) {
margin-left: 0;
}
}
.banner {
padding: 0 0 40px;
@include mq(md, min) {
padding: 0 10px;
}
img {
width: 100%;
}
}
.banners-left {
@include mq(md, min) {
padding-left: 0px;
padding-right: 12px;
}
}
.banners-right {
padding: 0;
.banner {
padding-right: 0;
&:nth-child(2) {
@include mq(md, min) {
padding-left: 8px;
}
}
} }
} }
} }

View File

@ -1,7 +1,7 @@
.footer-links { .footer-links {
@include mq(md, min) { @include mq(md, min) {
padding: 29px 0 25px; padding: 29px 0 25px;
border: 1px solid $color-gray-100; border-bottom: 1px solid $color-gray-100;
} }
&__wrapper { &__wrapper {

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -20,7 +20,16 @@
<body> <body>
<vtex:template id="thiagodutra-header" /> <vtex:template id="thiagodutra-header" />
<main class="home" style="height: 600px"></main> <main class="home">
<section class="main-banners">
<div class="main-banners__desktop">
<vtex:contentPlaceHolder id="banners-principais-desktop" />
</div>
<div class="main-banners__mobile">
<vtex:contentPlaceHolder id="banners-principais-mobile" />
</div>
</section>
</main>
<footer> <footer>
<vtex:template id="thiagodutra-footer-newsletter" /> <vtex:template id="thiagodutra-footer-newsletter" />