0

I'm trying to convert this image bubble(Below), so i can use it to upload my images when the user creates the account, for example when the user hovers of the image bubble it will display an "Upload profile image" and when the user clicks it, it should prompt them to upload an image. Can anyone push me in the right direction to achieve this?

enter image description here

1
  • 1
    You must have tried something...Please show us ...we will guide you thereafter Commented May 12, 2015 at 4:05

1 Answer 1

1

I'm assuming you know how image uploading works, if not, please do specify. In css, have you tried:

form{
    position: absolute;
    opacity: 0;
    /* You'll need to fine-tune this part */
    top: 50px;
    left:50px;
    /* If you want, you can add a transition on opacity */
}

form:hover{
    opacity:1
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.