How to conditionally animate with styled-componentsTarget another styled component on hoverIsolated styled-components with @font-faceHow to change the css on a component using styled-componentsHow to focus a styled component?styled-components - how to set styles on html or body tag?Styled Components: props for hoverMultiple nested components in styled componentsAre styled components memoized?How to extend styled components?

Drawing a sigmoid function and its derivative in tikz

Does "boire un jus" tend to mean "coffee" or "juice of fruit"?

Odd PCB Layout for Voltage Regulator

What happens if a caster is surprised while casting a spell with a long casting time?

iMac 2019: Can I mix the old modules with the new ones when upgrading RAM?

Which high-degree derivatives play an essential role?

What could a Medieval society do with excess animal blood?

What would you need merely the term "collection" for pitches, but not "scale"?

How to count the number of bytes in a file, grouping the same bytes?

How is it possible for tall trees to pull water to heights more than 10m?

Why do movie directors use brown tint on Mexico cities?

What was the point of separating stdout and stderr?

How do I debug a dependency package? If I have its source code

Chandra exiles a card, I play it, it gets exiled again

What is the meaning of "it" in "as luck would have it"?

"in 60 seconds or less" or "in 60 seconds or fewer"?

Multiple tests with effects all in same direction but only few significant

How do I present a future free of gender stereotypes without being jarring or overpowering the narrative?

Why didn't Caesar move against Sextus Pompey immediately after Munda?

Move up, right, left and down functions

How useful would a hydroelectric power plant be in the post-apocalypse world?

Is it OK to say "The situation is pregnant with a crisis"?

Could you fall off a planet if it was being accelerated by engines?

German idiomatic equivalents of 能骗就骗 (if you can cheat, then cheat)



How to conditionally animate with styled-components


Target another styled component on hoverIsolated styled-components with @font-faceHow to change the css on a component using styled-componentsHow to focus a styled component?styled-components - how to set styles on html or body tag?Styled Components: props for hoverMultiple nested components in styled componentsAre styled components memoized?How to extend styled components?













0















I'm trying to animate a line when an input is checked with styled-components.



I've tried with (a) and without (b) keyframes, and both return (c):



(a)

import styled, keyframes from 'styled-components';

const Input = styled.input``

const NavIconLine = styled.span`
display: block;
position: absolute;
height: 3px;
`;

const Animation = keyframes`
from
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
width: 70%;


to
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
width: 100%;

`;

const NavIconLine2 = styled(NavIconLine)`
width: 70%;

$Input:checked ~ &
animation: $Animation 0.15s ease-in-out;

`;


(b)

import styled from 'styled-components';

const Input = styled.input``

const NavIconLine = styled.span`
display: block;
position: absolute;
height: 3px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: 0.15s ease-in-out;
transition: 0.15s ease-in-out;
`;

const NavIconLine2 = styled(NavIconLine)`
width: 70%;

$Input:checked ~ &
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
width: 100%;

`;


(c)

function Component
return (
<Input type="checkbox" id="menu" />
<NavIcon for="menu">
<NavIconLine1 />
</NavIcon>
)



I think that perhaps the issue is with the targeting of the element in "$Input:checked ~ & ..." as "~ &" refers to the sibling and not the parent's sibling? If that's the case, is possible to target it?



Thanks!










share|improve this question


























    0















    I'm trying to animate a line when an input is checked with styled-components.



    I've tried with (a) and without (b) keyframes, and both return (c):



    (a)

    import styled, keyframes from 'styled-components';

    const Input = styled.input``

    const NavIconLine = styled.span`
    display: block;
    position: absolute;
    height: 3px;
    `;

    const Animation = keyframes`
    from
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    width: 70%;


    to
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;

    `;

    const NavIconLine2 = styled(NavIconLine)`
    width: 70%;

    $Input:checked ~ &
    animation: $Animation 0.15s ease-in-out;

    `;


    (b)

    import styled from 'styled-components';

    const Input = styled.input``

    const NavIconLine = styled.span`
    display: block;
    position: absolute;
    height: 3px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
    `;

    const NavIconLine2 = styled(NavIconLine)`
    width: 70%;

    $Input:checked ~ &
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;

    `;


    (c)

    function Component
    return (
    <Input type="checkbox" id="menu" />
    <NavIcon for="menu">
    <NavIconLine1 />
    </NavIcon>
    )



    I think that perhaps the issue is with the targeting of the element in "$Input:checked ~ & ..." as "~ &" refers to the sibling and not the parent's sibling? If that's the case, is possible to target it?



    Thanks!










    share|improve this question
























      0












      0








      0








      I'm trying to animate a line when an input is checked with styled-components.



      I've tried with (a) and without (b) keyframes, and both return (c):



      (a)

      import styled, keyframes from 'styled-components';

      const Input = styled.input``

      const NavIconLine = styled.span`
      display: block;
      position: absolute;
      height: 3px;
      `;

      const Animation = keyframes`
      from
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      width: 70%;


      to
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      width: 100%;

      `;

      const NavIconLine2 = styled(NavIconLine)`
      width: 70%;

      $Input:checked ~ &
      animation: $Animation 0.15s ease-in-out;

      `;


      (b)

      import styled from 'styled-components';

      const Input = styled.input``

      const NavIconLine = styled.span`
      display: block;
      position: absolute;
      height: 3px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.15s ease-in-out;
      transition: 0.15s ease-in-out;
      `;

      const NavIconLine2 = styled(NavIconLine)`
      width: 70%;

      $Input:checked ~ &
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      width: 100%;

      `;


      (c)

      function Component
      return (
      <Input type="checkbox" id="menu" />
      <NavIcon for="menu">
      <NavIconLine1 />
      </NavIcon>
      )



      I think that perhaps the issue is with the targeting of the element in "$Input:checked ~ & ..." as "~ &" refers to the sibling and not the parent's sibling? If that's the case, is possible to target it?



      Thanks!










      share|improve this question














      I'm trying to animate a line when an input is checked with styled-components.



      I've tried with (a) and without (b) keyframes, and both return (c):



      (a)

      import styled, keyframes from 'styled-components';

      const Input = styled.input``

      const NavIconLine = styled.span`
      display: block;
      position: absolute;
      height: 3px;
      `;

      const Animation = keyframes`
      from
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      width: 70%;


      to
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      width: 100%;

      `;

      const NavIconLine2 = styled(NavIconLine)`
      width: 70%;

      $Input:checked ~ &
      animation: $Animation 0.15s ease-in-out;

      `;


      (b)

      import styled from 'styled-components';

      const Input = styled.input``

      const NavIconLine = styled.span`
      display: block;
      position: absolute;
      height: 3px;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.15s ease-in-out;
      transition: 0.15s ease-in-out;
      `;

      const NavIconLine2 = styled(NavIconLine)`
      width: 70%;

      $Input:checked ~ &
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      width: 100%;

      `;


      (c)

      function Component
      return (
      <Input type="checkbox" id="menu" />
      <NavIcon for="menu">
      <NavIconLine1 />
      </NavIcon>
      )



      I think that perhaps the issue is with the targeting of the element in "$Input:checked ~ & ..." as "~ &" refers to the sibling and not the parent's sibling? If that's the case, is possible to target it?



      Thanks!







      styled-components






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 16:29









      Lewis LloberaLewis Llobera

      133 bronze badges




      133 bronze badges




















          1 Answer
          1






          active

          oldest

          votes


















          0














          Solved:



          Instad of writing the condition on the descendant, it's written on the parent's sibling:



          const Input = styled.input`
          display: whatever;

          :checked + $NavIcon
          $NavIconLine1
          animation: whatever;


          `;





          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55342384%2fhow-to-conditionally-animate-with-styled-components%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Solved:



            Instad of writing the condition on the descendant, it's written on the parent's sibling:



            const Input = styled.input`
            display: whatever;

            :checked + $NavIcon
            $NavIconLine1
            animation: whatever;


            `;





            share|improve this answer



























              0














              Solved:



              Instad of writing the condition on the descendant, it's written on the parent's sibling:



              const Input = styled.input`
              display: whatever;

              :checked + $NavIcon
              $NavIconLine1
              animation: whatever;


              `;





              share|improve this answer

























                0












                0








                0







                Solved:



                Instad of writing the condition on the descendant, it's written on the parent's sibling:



                const Input = styled.input`
                display: whatever;

                :checked + $NavIcon
                $NavIconLine1
                animation: whatever;


                `;





                share|improve this answer













                Solved:



                Instad of writing the condition on the descendant, it's written on the parent's sibling:



                const Input = styled.input`
                display: whatever;

                :checked + $NavIcon
                $NavIconLine1
                animation: whatever;


                `;






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 26 at 8:12









                Lewis LloberaLewis Llobera

                133 bronze badges




                133 bronze badges
















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55342384%2fhow-to-conditionally-animate-with-styled-components%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript