Showcase
Explore real examples of Genecy creative templates in action - interactive, high-performing creatives built for Google Ad Manager.
All examples
-
Intexter
Desktop, In-Text Video with Advertisement Label and Fade-In Effect
desktop -
Revealer
Desktop, 300×600 Scratch-Off Effect with Fashion Images
desktop -
Tilter
Desktop, 300×600 Interactive 3D Tilt with 2 Images
desktop -
Slider
Mobile, 300×300 Image Setup
mobile -
Welcomer
Desktop, 1500×500 GIF Image Setup
desktop -
Parallaxer
Mobile, PNG Image with Fixed Watch and Scrolling Background
mobile -
Wallpaper
Desktop, 3-Image Setup for Each Skin Part
desktop -
Selector
Desktop, 970×250 Branded Selector with Multiple Items
desktop -
Floater
Desktop, 900×500 Image Setup
desktop -
Wallpaper
Desktop, Narrow Fixed Sides Wallpaper with 3 Images
desktop -
Baselayer
Mobile, Base Banner (336x280px) with Popup Layer for Detailed Offers
mobile -
Interstitial
Desktop, Full-Screen Interstitial Triggered on Scroll (500px)
desktop -
Cube
Mobile, Interactive Cube with Branded Background Image
mobile -
Converger
Desktop, Full-Screen Sliding Door Effect with Transparent Top Layer CTA
desktop -
Masthead
Desktop, 480p Video with Bottom-Right Sticky Layer (10px Offset)
desktop -
Catfisher
Desktop, 728×90 Image with Vertical Spacing and Semi-Transparent Background
desktop -
Parallaxer
Mobile, 320×480 Responsive HTML5 Setup
mobile -
Baselayer
Desktop, Base Banner (336x280px) with Popup Layer for Detailed Offers
desktop -
Expander
Desktop, 970×150 and 970×410 images, expands smoothly within the viewport
desktop -
Responsiver
Mobile, 600×500 Edge-to-Edge Image Setup
mobile
IntexterIn-Text Video with Custom Advertisement Block
Desktop, In-Text Video with Advertisement Label and Fade-In Effect
Setup & configuration
Used assets:
- Video: Video 336x280px (.mp4)
JS callback:
tmpl.on('load', function() {
tmpl.eCont.style.marginTop = '20px';
tmpl.eCont.style.backgroundColor = '#fbf7ef';
tmpl.eCont.style.padding = '40px 0';
tmpl.eCont.style.opacity = '0';
tmpl.eCont.style.transition = 'opacity 0.6s ease-in-out';
});
tmpl.on('appear', function() {
const eAdLabel = document.createElement('div');
eAdLabel.innerHTML = 'Advertisement';
eAdLabel.setAttribute('style', `
text-align:center;
font-size:11px;
color:rgba(0,0,0,0.5);
font-weight:normal;
position:absolute;
top:5px;
left:0;
width:100%;
text-transform:uppercase;
letter-spacing:1px;
`);
tmpl.eCont.insertBefore(eAdLabel, tmpl.eCont.firstChild);
const eAdCont = tmpl.getEl('eAdCont');
if (eAdCont) {
eAdCont.style.boxShadow = '0 0 10px rgba(0,0,0,0.3)';
}
setTimeout(function() {
tmpl.eCont.style.opacity = '1';
}, 100);
});