Home» Forum» Site Feedback» can't create interactive stuff for my profile

can't create interactive stuff for my profile

Back to Site Feedback

I had many interactive stuff on my Spacehey profile but I can't recreate them on here

like the album racks, slideshows, pics that wiggles when u touch them, two sided photo cards that turns around when u click on them etc.

I can't use the div extension on here it doesn't work... 

I just rolled out some fixes for this, it should all work now. If you run into any issues let me know we will figure it out (:

@Def3ct thank u I'll try them now 😖😖😖

@Def3ct it sort of worked but not the way I needed to be

like <style>

    .slideshow-container1234 {

      position: relative;

      max-width: 100%;

      overflow: hidden;

    }


    .slides1234 {

      display: flex;

      animation: slide1234 15s infinite;

    }


    .slides1234 img {

      width: 100%;

      height: auto;

      display: block;

    }


    @keyframes slide1234 {

      0% { transform: translateX(0); }

      20% { transform: translateX(-100%); }

      40% { transform: translateX(-200%); }

      60% { transform: translateX(-300%); }

      80% { transform: translateX(-400%); }

      100% { transform: translateX(-500%); }

    }

  </style>

 this is the code and when I smack the div section, the pics supposed to be moving to the next from right to left, but when I did it, it only showed one of the pics and the rest was umm missing 

<style>

.slideshow-container1234 {

  position: relative;

  width: 100%;

  overflow: hidden;

}


.slides1234 {

  display: flex;

  flex-wrap: nowrap;

  animation: slide1234 15s infinite;

}


.slides1234 img {

  flex: 0 0 100%;     

  width: 100%;

  min-width: 100%;

  height: auto;

  display: block;

}


@keyframes slide1234 {

  0%   { transform: translateX(0); }

  20%  { transform: translateX(-100%); }

  40%  { transform: translateX(-200%); }

  60%  { transform: translateX(-300%); }

  80%  { transform: translateX(-400%); }

  100% { transform: translateX(-500%); }

}

</style>    try this? 

@Def3ct sureee😖😖😖😖🥺🙏💓

@Def3ct ok ok it did not work 🥺


@Def3ct ok ok wait it workedd!!!!😖😖😖🙏🙏🙏🙏🙏💓💓

thank u so muchhh!!!!👌👌👌🙏🙏🙏💓

ohh ok the thing is

when I put the style code on the layout sheet or wtv it doesn't work

but when I put bakc to back with the div class on the interests section it works but only on the profile editing page, when I go back to my profile to look at it all the pictures are just stacked up on top of each other 

You must be logged in to reply.