Welcome to TalkGraphics.com
Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15
  1. #11
    Join Date
    May 2002
    Location
    Canada
    Posts
    3,338

    Default Re: Need help with rollover

    Acron I hate that bounce at the end of it.

  2. #12
    Join Date
    Apr 2012
    Location
    SW England
    Posts
    17,746

    Default Re: Need help with rollover

    OK, you've twisted my arm.

    Move everything in the popup Layer into the MouseOver layer.
    In Web Animation > Mouse-over > Document default settings > Mouse-over effect: Slide from top and fade; Speed: Fast.

    Acorn
    Acorn - installed Xara software: Cloud+/Pro+ and most others back through time (to CC's Artworks). Contact for technical remediation/consultancy for your web designs.
    When we provide assistance, your responses are valuable as they benefit the community. TG Nuggets you might like. Report faults: Xara Cloud+/Pro+/Magix Legacy; Xara KB & Chat

  3. #13
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,487

    Default Re: Need help with rollover

    I'm moving this to Dear Xara as a feature request. A simple scroll from Top (or side or bottom) that starts at the designated side of the object and that DOES NOT BOUNCE (which is so corny).

  4. #14
    Join Date
    Apr 2012
    Location
    SW England
    Posts
    17,746

    Default Re: Need help with rollover

    Quote Originally Posted by gwpriester View Post
    I'm moving this to Dear Xara as a feature request. A simple scroll from Top (or side or bottom) that starts at the designated side of the object and that DOES NOT BOUNCE (which is so corny).
    Xara uses the animate.css (new link is https://daneden.github.io/animate.css/), where the Stretch Down effect, named by Xara, seems to be the pullDown class. Its animation has a keyframes sequence which has a y-scaling for 40% from small to just oversize and over the remaining time oscillates slightly 5 times to the final 100%.

    You could replace all this with a Placeholder object with HTML code (body):
    Code:
    <style>@keyframes pullDown {
    	0% {
    		transform: scaleY(0.1);
    	}
    	100% {
    		transform: scaleY(1);
    	}
    
    @-webkit-keyframes pullDown {
    	0% {
    		transform: scaleY(0.1);
    	}
    	100% {
    		transform: scaleY(1);
    	}
    
    }
    </style>
    The better request to ask Xara is for it to incorporate the 76 effects Daniel Eden currently has developed: version 3.7.0, copyright 2018 vs. Xara's instantiation of 2015.

    Acorn
    Acorn - installed Xara software: Cloud+/Pro+ and most others back through time (to CC's Artworks). Contact for technical remediation/consultancy for your web designs.
    When we provide assistance, your responses are valuable as they benefit the community. TG Nuggets you might like. Report faults: Xara Cloud+/Pro+/Magix Legacy; Xara KB & Chat

  5. #15
    Join Date
    May 2002
    Location
    Canada
    Posts
    3,338

    Default Re: Need help with rollover

    Thanks Gary and Acorn.

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •