Object2VR 4 Docs / Create Animated Hotspot Icons

Create Animated Hotspot Icons

Learn how to create animated icons for point hotspots. This particular animated icon will consist of to rotating bars hinged at the center.

This tutorial is adapted from our Webinar on using CSS. It’s a simple way to create rotating rectangles.

  1. Draw a rectangle.

  2. Add the following CSS to the Embedded Stylesheet in the Skin’s properties.

    @keyframes rotation {  from {  transform: rotate(0deg);  }  to {  transform: rotate(360deg);  } } 
  3. Add this to the CSS Styles for the Rectangle: animation: rotation 2s infinite linear;. The rectangle will start to rotate.

  4. Duplicate the Rectangle and give the new rectangle a unique ID.

  5. In the Embedded Stylesheet, copy and paste the code block added earlier.

  6. Chanage rotation to rotationCCW. And then, transform: rotate(-360deg); to ensure that the second rectangle spins in the opposite direction.

    @keyframes rotationCCW {  from {  transform: rotate(0deg);  }  to {  transform: rotate(-359deg);  } } 
  7. Select one of the rectangles, and change the CSS Styles to animation: rotationCCW 2s infinite linear;

Now the rectangles are rotating in opposite directions. You can explore with changing the speed or even adding easing:animation: rotationCCW 2s infinite ease-in-out;.

See also…

Last modified: May 16, 2022