Jump to content

joecookjc

Member
  • Posts

    8
  • Joined

  • Last visited

Posts posted by joecookjc

  1. On 5/10/2021 at 3:10 PM, Wolfsilon said:

    Hello there,

    To add an animated arrow down element, we'll need to use a Code Block and Custom CSS.

    1) Create a Code Block and place the block directly underneath the "Get A Quote" button.

    2) In the Code Block menu, you'll see "<p> hello world! </p>" -- Remove the entire line and replace it with the following: 

    <div class="arrow">
      <span></span>
    </div>

    3) You can now save and close the page editor. Return to "Home" and navigate to Design > Custom CSS.

    4) To animate and place the element onto your website you can paste the following into the Custom CSS box:

     .arrow{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .arrow span{
        display: block;
        width: 30px;
        height: 30px;
        border-bottom: 3px solid #000;
        border-right: 3px solid #000;
        transform: rotate(45deg);
        margin: -10px;
        animation: animate 1.8s ease infinite;
    }
    @keyframes animate {
        0%{
            opacity: 0;
            transform: rotate(45deg) translate(-20px,-20px);
        }
        50%{
            opacity: 1;
        }
        100%{
            opacity: 0;
            transform: rotate(45deg) translate(20px,20px);
        }
    }

    5) You should start to see the arrow animate downward in the center of the page, directly under the "Get A Quote" button. 

    You can customize the "stroke" of the arrow by adjusting the dimensions of the Border-Bottom and Border-Right "px" properties.

    You can adjust the color of the arrow ("stroke") by inserting a hex/rgb/rgba color of your choice. Simply replace the "#000" with the color/format of your choice for both Border-Bottom and Border-Right.

    You can adjust the speed of the downwards animation by entering new timings and transitions. The CSS format of the animation shown above is listed below and I would encourage you to experiment with different properties for transition-duration and timing-function. 
     

    Let me know if you need any additional help. Hope this provided a solution for you! 

    Cheers,

    Dan

     

    On 12/25/2021 at 2:15 AM, tuanphan said:

    If you share link to page in screenshot, we can check & help easier

    Hey Tuanphan! I was wondering if there's a way to be able to have the arrow fade out once the viewer scrolls down and reappear if they go back to the top of the site?

    My website is 

    joecook.design

    password: 1234

     

    Thanks!

  2. On 4/24/2021 at 8:10 AM, tuanphan said:

    try this

    /* Change image on portfolio item hover */
    a.grid-item[href="/work/anxiocalm"]:hover img {
        visibility: hidden;
    }
    .grid-image-inner-wrapper:after {
        visibility: hidden;
    }
    a.grid-item[href="/work/anxiocalm"]:hover .grid-image-inner-wrapper {
        background-image: url(https://static1.squarespace.com/static/607f2d7caeff013b864be14f/t/6081c16961f7c44a415b5cb6/1619116393840/anxio-car-hover.png) !important;
    background-repeat: no-repeat;
    background-size: contain;
    }

     

    Is there a way to add a transition to this? 

  3. Site URL: http://capybera-point-sp57.squarespace.com

    Password: 1234

    Hey guys, I had this hover css code added and it was working perfectly. All of a sudden it stopped. I can't seem to figure out why.

    When I go into the edit page and hover over it, it slants, but once I hit done and it's back on the normal view, it doesn't slant. 

    Here's all the custom code I have added:

    header#header.shrink * {
        color: black !important;
    }
    
    .sqs-svg-icon--list {
        a:hover {
            opacity: 1 !important;
        }
        a:hover .sqs-use--icon {
            fill: #C3FF5C !important;
        }
    }
    
    // Slanted Text Effect //
    
    h1:hover {
    transform: skewX(-15deg);
    transition:transform .3s ease-in-out;
    color: #C3FF5C !important;
    cursor: default;
    }
    
    h1 {
    transition:transform .3s ease-in-out;
      }
    
    // Spotlight Navigation Style //
    .header-nav-list:hover > .header-nav-item {
      opacity: 0.5;
    }
    .header-nav-list:hover > .header-nav-item:hover {
      opacity: 1.0;
    }
    // Spotlight Navigation Folder Style //
    .header-nav-folder-content:hover > .header-nav-folder-item {
      opacity: 0.5;
    }
    .header-nav-folder-content:hover > .header-nav-folder-item:hover {
      opacity: 1.0;
    }
    
    div#block-ee18e72926134564be2b a {
        color: black;
      transition: background-color .5s; 
      transition: color .5s;
      transition: transform 0.3s !important;
    }
    div#block-ee18e72926134564be2b a:hover {
        color: #4063b3;
      background-color: #C3FF5C;
      opacity: 1 !important;
        transform: scale(1.1) !important;
    }
    div#block-448c899fbef46c44308f a {
        color: black;
      transition: background-color .5s; 
      transition: color .5s;
      transition: transform 0.3s !important;
    }
    div#block-448c899fbef46c44308f a:hover {
        color: #4063B3;
      background-color: #C3FF5C;
      opacity: 1 !important;
        transform: scale(1.1) !important;
    }

    Any help would be greatly appreciated! 

  4. 16 hours ago, humxahafeex said:

    Hi Your website is private , we can't access it please do set up a password on it and share password so we can help you further.

     

    HOW TO SETUP PASSWORD:

    1. On the Home menu, click Settings, then click Site Availability.
    2. Select Password Protected in the drop-down menu.
    3. Enter the password visitors will use to view your site.
    4. Click Save.

    Sorry about that! I updated it

    Password: 1234

  5. Site URL: http://capybera-point-sp57.squarespace.com

    Site password: 1234

    Hey there! I'm trying to figure out if there is a way to add a blur effect to my site when I open the menu up on a mobile device.

    For example, in the picture I'd like the background "hey there", "work i'm proud of", and even the dividing line between the blue and the white to all be blurred when this menu is open.

    Screen Shot 2022-05-13 at 9.10.11 PM.png

  6. Site URL: http://capybera-point-sp57.squarespace.com

    Hey there! I was wondering if there's a way to have a transparent fixed header that switches the font color when scrolling.

    I'm not sure if that makes sense.

    So right now my header is in dynamic mode and I have the font color as a white because I like the way it looks on the colors of the moving background.

    However, I want to add a fixed scrolling header and an issue comes into play when I scroll down. Lower down the background of my site is white, so you aren't able to see the text in the header. Is there a way to have the text be white while at the top of the page, and then change to black or another more visible color when you scroll down?

×
×
  • 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.