Response
Hii, beautiful theme,,,, I'm having some difficulty adding those images in the bottom left corner and making them float, could you perhaps help me with the code? β₯β₯
This code is from @zandik
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(10px); } 100% { transform: translateY(0); } }
body:after { content: ''; position: fixed; bottom:-30px; left: 5px; width: 300px; height: 400px; background-image: url(https://file.garden/Zj8MKPoh-G9Y8EJE/pngsgifs/mine/ivdrip); background-size: contain; background-repeat: no-repeat; z-index: 1010; pointer-events: none; animation: float 3s ease-in-out infinite }
Comment
Reactions
Replies
Add a reply
Check if it works since idrk what I'm doing. Of course, change my image link to yours. Change the ''left'' for ''right'' if you want it to be on the other side. Change the width and height according to your image or to make it smaller, and change the px numbers in ''bottom'' and ''left'' to position it where you want.