项目作者: fadyehabamer

项目描述 :
Change profile image like "Facebook" using pure javascript
高级语言: CSS
项目地址: git://github.com/fadyehabamer/Change-ProfileImg-JS.git
创建时间: 2020-08-17T23:20:13Z
项目社区:https://github.com/fadyehabamer/Change-ProfileImg-JS

开源协议:

下载


Change Profile Image

Like FaceBook 😉👌 with 2 hours of search using

  • HTML
  • CSS
    • Gradients
  • JS
    • Built-in JS functions
  1. file.addEventListener("change", function() {
  2. const choosedfile = this.files[0];
  3. if (choosedfile) {
  4. const reader = new FileReader();
  5. reader.addEventListener("load", () => {
  6. img.setAttribute("src", reader.result)
  7. });
  8. reader.readAsDataURL(choosedfile)
  9. }
  10. });