Jump to content

IgnatiaBelle

Member
  • Posts

    12
  • Joined

  • Last visited

Reputation Activity

  1. Like
    IgnatiaBelle got a reaction from Beyondspace in How to add Codepen code my website?   
    I couldn't solve it for the page with my portfolio on it no..
    What was even stranger is it was fine on the other page- about me
    but it wouldn't work with the page with my work on it so I just took it off completely and had it so it only featured on the about me page
  2. Thanks
    IgnatiaBelle reacted to tuanphan in How to add Codepen code my website?   
    Try adding a Code Block > Paste this code
    <body> <main class="page"> <div class="row"> <div class="col-md-12"> <div class="mood-board"> <div class="title"> <h1 class="align-center">From Trouville-sur-Mer</h1> </div> <!-- Start of Mood Board Bg --> <div id="background" class="images"> <div class="draggable resizeable element"> <img src="//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57d990802994cae5530aa4d3/1473876096339/5706067294_df3f598fc3.jpg" alt="" /> </div> <div class="draggable resizeable element"> <img src="//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57d9909e2994cae5530aa608/1473876127131/visitez-la-cotes-basquesss.JPG" alt="" /> </div> <div class="draggable resizeable element"> <img src="//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57d990ad2994cae5530aa6b6/1473876141612/tumblr_inline_nmr7wkhRzo1r2u8iv_500.jpg" alt="" /> </div> <div class="draggable resizeable element"> <img src="//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57d990bd2994cae5530aa7eb/1473876157299/9718096_2.jpg" alt="" /> </div> <div class="draggable resizeable element"> <img src="//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57d990db2994cae5530aaab7/1473876187333/Bernard-Villemot-portrait-affichiste-graphiste-FR-index-grafik.jpg" alt="Bernard-Villemot-portrait" /> <p class="description"> <i>Bernard Villemot &#8211; French graphic artist (1911 - 1989).</i> </p> </div> <div class="draggable resizeable element"> <img src="//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57d990e72994cae5530aab4b/1473876200141/orangina.jpg" alt="Orangina" /> </div> <div class="draggable resizeable element"> <img src="//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57d990fd2994cae5530aac9c/1473876222103/bergasol.jpg" alt="Bergazol" /> </div> <div class="draggable resizeable element"> <img src="//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57d991092994cae5530aad29/1473876233277/perrier.jpg" alt="Perrie" /> </div> </div> <!-- Mood board Bg ends --> </div> </div> </div> </main> </body> <style> /* ============================================== Fonts Installation ============================================== */ @import "https://fonts.googleapis.com/css?family=Droid+Serif"; @font-face { font-family: 'Bodoni'; src: url("//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57dad241414fb5d694751ab7/1473958465275/BodoniFLF-Roman.ttf"); font-weight: normal; font-style: normal; } @font-face { font-family: 'Bodoni Bold'; src: url("//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57dad236414fb5d694751a44/1473958454896/BodoniFLF-Bold.ttf"); font-weight: bold; font-style: normal; } @font-face { font-family: 'Bodoni Italic'; src: url("//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57dad23b414fb5d694751a73/1473958460144/BodoniFLF-Italic.ttf"); font-weight: normal; font-style: italic; } @font-face { font-family: 'Bodoni Bold Italic'; src: url("//static1.squarespace.com/static/543870a5e4b0a877b5a652d9/t/57dad231414fb5d694751a13/1473958449544/BodoniFLF-BoldItalic.ttf"); font-weight: bold; font-style: italic; } /* ============================================== Variables ============================================== */ /* ============================================== Mixins ============================================== */ /* ============================================== Overall styles ============================================== */ .align-center { text-align: center; } h1 { font-family: "Bodoni Bold", Garamond, "Times New Roman", serif; font-size: 7vw; color: #000; letter-spacing: -0.02em; } p { font-family: "Bodoni Italic", Garamond, "Times New Roman", serif; font-size: 0.8em; font-style: italic; padding-top: 0.5em; letter-spacing: 0.09em; } .description { display: none; } .mood-board { width: 100%; height: 100vh; background: #ffeecc; position: relative; } .mood-board .title { position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; width: 100%; height: 40vh; } .mood-board .images { position: absolute; top: 0; bottom: auto; left: 0; right: auto; margin: auto; width: 100%; height: 100%; max-height: 100%; overflow: hidden; } .mood-board .element { position: absolute; z-index: 0; } .mood-board .element:hover .description { display: block; } .mood-board .element img { width: 100%; height: 100%; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function() { var draggable = $('.draggable'); var resizable = $('.resizeable'); var element = $('.element'); element.each( setRandomSize ); element.each( setRandomPosition ); resizable.resizable({ containment: "#background", aspectRatio: true, handles: "n, w, s, e" }); draggable.draggable({ cursor: "move", containment: "#background", stack: ".element", }); if(window.innerHeight > window.innerWidth){ } function setRandomSize(){ //Get IMG size var img = $(this).find('img'); imgHeight = img.outerHeight(); imgWidth = img.outerWidth(); if(window.innerHeight > window.innerWidth){ //Generate random Width % [10, 60] var randomWidth = randomIntFromInterval(10, 60); $(this).css({ width: randomWidth + '%' }); } else { //Change Height to [100, 330] randomly var randomHeight = randomIntFromInterval(100, 330); //Calc proportional width var proportionalWidth = (imgWidth * randomHeight) / imgHeight; $(this).css({ height: randomHeight + 'px', width: proportionalWidth + 'px' }); } } function setRandomPosition(){ //Generate random Top % [0, 75] var randomTop = randomIntFromInterval(0, 75); //Generate randon Left % [0, 85] var randomLeft = randomIntFromInterval(0, 75); $(this).css({ top: randomTop + '%', left: randomLeft + '%' }) } function randomIntFromInterval(min,max) { return Math.floor(Math.random()*(max-min+1)+min); } }); </script>  
  3. Like
    IgnatiaBelle got a reaction from Beyondspace in How to add Codepen code my website?   
    Site URL: https://www.ignatiabelle.com/
    Hi there!
    I want to use this code on my website's homepage as the header. https://codepen.io/iggy-van-reesema/pen/NWrNKNQ
    Not sure where to paste the various HTML, CSS & JS codes.
    I have tried pasting it all (html css and js) into a code block and I can get the text to appear and its animating just the css styling hasn't been added to it..
    My site is www.ignatiabelle.com
    Thanks for any help!
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.