3D Curtain Template - createIT
Get a free advice now!

    Pick the topic
    Developer OutsourcingWeb developingApp developingDigital MarketingeCommerce systemseEntertainment systems

    Thank you for your message. It has been sent.
    Tags

    3D Curtain Template

    3D Curtain Template

    Creating the structure

    The HTML structure is quite basic: for each block of content we created an element containing a div.cd-block and 2 div.cd-half-block. The first .cd-half-block is always empty and is used to set the background image, while the second contains the text paragraph.

    Website preview with three columns, one with an image, two with text

    Here’s the structure code:

    Colorful code over black background

    Adding style

    On small devices, we didn’t implement the curtain effect so you’ll see a basic layout with the list of all the sections (you can have a look at the source code for more details).

    On desktop devices (viewport width more than 1170px), we assigned the position: fixed and a top: 0 to the .cd-block elements in order to place them on top of the screen (this way they are one on top of the other). Since their containers – .cd-section – have a height: 100vh (and position: static), they still occupy their own space (that way we can scroll the page).

    Besides, we assigned a translateX to each .cd-half-block element (translateX(-100%) and translateX(100%) alternatively to :first-of-type and :nth-of-type(2)) so that they are moved outside the viewport.

    @media only screen and (min-width: 1170px) {
      .cd-section {
        height: 100vh;
      }
      .cd-block {
        position: fixed;
        top: 0;
        left: 0;
      }
      .cd-half-block {
        height: 100vh;
        width: 50%;
        position: absolute;
        top: 0;
      }
      .cd-section:nth-of-type(even) .cd-half-block:first-of-type, 
      .cd-section:nth-of-type(odd) .cd-half-block:nth-of-type(2) {
        left: 0;
        transform: translateX(-100%);
      }
      .cd-section:nth-of-type(odd) .cd-half-block:first-of-type, 
      .cd-section:nth-of-type(even) .cd-half-block:nth-of-type(2) {
        right: 0;
        transform: translateX(100%);
      }
    }
    
    Website preview with three columns of different color

    Events Handling

    Each section animation is basically made up of two phases: in the first one, the 2 .cd-half-block elements are moved back in the viewport (the translateX value varies from 100%/-100% to 0); in the second one the .cd-block is scaled down and its opacity is reduced (to simulate a 3D movement).

    To do so, we attached the triggerAnimation() function to the window scroll event. When the user scrolls, for each .cd-section element we evaluate – using the animateSection() function – the translateX and scale value according to the window scrollTop (and the section offset().top).

    $(window).on('scroll', function(){
    	triggerAnimation();
    });
     
    function triggerAnimation(){
    	if(MQ == 'desktop') {
    		//if on desktop screen - animate sections
    		window.requestAnimationFrame(animateSection);
    	} // .....
    }
     
    function animateSection () {
    	$('.cd-section').each(function(){
    		var actualBlock = $(this),
    			scale,
    			translate,
    			opacity;
     
    		//evaluate scale/translate values
    		//...
     
    		scaleBlock(actualBlock.find('.cd-block'), scale, opacity);
    		translateBlock(actualBlock.find('.cd-half-block').eq(0), '-'+translate);
    		translateBlock(actualBlock.find('.cd-half-block').eq(1), translate);	
    	});
    }
     
    function translateBlock(elem, value) {
    	elem.css({
    	 	//...
    		'transform': 'translateX(' + value + ')',
    	});
    }
     
    function scaleBlock(elem, value, opac) {
    	elem.css({
    	    //...
    		'transform': 'scale(' + value + ')',
    		'opacity': opac
    	});
    }
    Website preview with a car speed meter  and text on the right

    http://codyhouse.co/demo/3d-curtain-template

    Download

    Website preview with a small part of an image, black text on white background and two buttons with arrows
    Comments
    0 response

    Add comment

    Your email address will not be published. Required fields are marked *

    Popular news

    Fetching Time records from ActiveCollab API
    • Dev Tips and Tricks

    Fetching Time records from ActiveCollab API

    September 9, 2024 by createIT
    Docker Compose for PrestaShop
    • Dev Tips and Tricks

    Docker Compose for PrestaShop

    September 2, 2024 by createIT
    WordPress wizard in admin – step by step
    • Dev Tips and Tricks

    WordPress wizard in admin – step by step

    August 29, 2024 by createIT
    Order Status Sync between PrestaShop and External APIs
    • Dev Tips and Tricks

    Order Status Sync between PrestaShop and External APIs

    August 26, 2024 by createIT
    What is PHP used for in web development 
    • Dev Tips and Tricks

    What is PHP used for in web development 

    August 22, 2024 by createIT
    Automating WooCommerce product availability date
    • Dev Tips and Tricks

    Automating WooCommerce product availability date

    August 15, 2024 by createIT
    WP Quiz Adventure – FAQ
    • Dev Tips and Tricks

    WP Quiz Adventure – FAQ

    August 12, 2024 by createIT
    Retrieval Augmented Generation tutorial and OpenAI example
    • Dev Tips and Tricks

    Retrieval Augmented Generation tutorial and OpenAI example

    August 8, 2024 by createIT
    10 useful SEO tools for the iGaming industry
    • Services
    • Technology

    10 useful SEO tools for the iGaming industry

    August 5, 2024 by createIT

    Technology
    Be on the same page as the rest of the industry.

    Contact us