

├── README.md ├── css ├── img │ ├── Go2.png │ ├── filename.gif │ └── screen.png └── style.css ├── index.html └── workLog.md /README.md: -------------------------------------------------------------------------------- 1 | https://cqxg.github.io/animation-editor/ 2 | This app for creating animations and drawings by CQXG. 3 | 4 | With this application, you can easily create a variety of animations from the simplest to very complex and save them in .png format as well as drawings as images. 5 |  6 | 7 |  8 | 9 | -------------------------------------------------------------------------------- /css/img/Go2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqxg/animation-editor/a0676b0952977668b571eb6c0da8f752f3269c5e/css/img/Go2.png -------------------------------------------------------------------------------- /css/img/filename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqxg/animation-editor/a0676b0952977668b571eb6c0da8f752f3269c5e/css/img/filename.gif -------------------------------------------------------------------------------- /css/img/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqxg/animation-editor/a0676b0952977668b571eb6c0da8f752f3269c5e/css/img/screen.png -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: rgb(0, 0, 0); 3 | } 4 | 5 | main { 6 | display: flex; 7 | flex-direction: row; 8 | min-height: calc(100vh - 100px); 9 | } 10 | 11 | .content { 12 | width: 70%; 13 | text-align: center; 14 | } 15 | 16 | .sub { 17 | font-size: 30px; 18 | border-radius: 5px; 19 | border: 1px solid rgb(0, 0, 0); 20 | background-color: rgb(255, 255, 255); 21 | } 22 | 23 | .sub, 24 | .desc, 25 | .img, 26 | .btn, 27 | .screen { 28 | margin: 15px 15px; 29 | } 30 | 31 | .screen_img { 32 | border-radius: 5px; 33 | border: 3px solid rgb(65, 65, 65); 34 | } 35 | 36 | .desc_text, 37 | .ex { 38 | font-size: 25px; 39 | border-radius: 5px; 40 | border: 1px solid rgb(50, 50, 50); 41 | background-color: rgb(255, 255, 255); 42 | } 43 | 44 | .content, 45 | .image, 46 | .img { 47 | margin: 5px 5px; 48 | border-radius: 5px; 49 | color: rgb(0, 0, 0); 50 | border: 3px solid rgb(55, 55, 55); 51 | background-color: rgb(170, 170, 170); 52 | } 53 | 54 | .image { 55 | display: flex; 56 | flex-direction: column; 57 | width: 30%; 58 | height: 450px; 59 | } 60 | 61 | .img { 62 | height: 450px; 63 | background-image: url('./img/filename.gif'); 64 | } 65 | 66 | h1, footer { 67 | font-size: 20px; 68 | border-radius: 5px; 69 | text-align: center; 70 | color: rgb(255, 255, 255); 71 | background-color: rgb(90, 90, 90); 72 | border: 3px solid rgb(55, 55, 55); 73 | } 74 | 75 | .cqxg { 76 | text-decoration: none; 77 | color: rgb(255, 255, 255); 78 | } 79 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 |