Enhance Ai
commited on
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,171 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- stable-diffusion
|
| 5 |
+
- safetensors
|
| 6 |
+
- stable-diffusion-xl
|
| 7 |
+
- text-generator
|
| 8 |
+
- image-generator
|
| 9 |
+
- ai
|
| 10 |
+
- image-to-image
|
| 11 |
+
- inpainting
|
| 12 |
+
- image-to-inpainting
|
| 13 |
+
- manga
|
| 14 |
+
---
|
| 15 |
+
<style>
|
| 16 |
+
.title-container {
|
| 17 |
+
display: flex;
|
| 18 |
+
justify-content: center;
|
| 19 |
+
align-items: center;
|
| 20 |
+
height: 100vh; /* Adjust this value to position the title vertically */
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
.title {
|
| 24 |
+
font-size: 2.5em;
|
| 25 |
+
text-align: center;
|
| 26 |
+
color: RED;
|
| 27 |
+
font-family: 'Helvetica Neue', sans-serif;
|
| 28 |
+
text-transform: uppercase;
|
| 29 |
+
letter-spacing: 0.1em;
|
| 30 |
+
padding: 0.5em 0;
|
| 31 |
+
background: transparent;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
.title span {
|
| 35 |
+
background: -webkit-linear-gradient(45deg, RED,BLACK);
|
| 36 |
+
-webkit-background-clip: text;
|
| 37 |
+
-webkit-text-fill-color: transparent;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
.custom-table {
|
| 41 |
+
table-layout: fixed;
|
| 42 |
+
width: 100%;
|
| 43 |
+
border-collapse: collapse;
|
| 44 |
+
margin-top: 2em;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
.custom-table td {
|
| 48 |
+
width: 50%;
|
| 49 |
+
vertical-align: top;
|
| 50 |
+
padding: 10px;
|
| 51 |
+
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
.custom-image-container {
|
| 55 |
+
position: relative;
|
| 56 |
+
width: 100%;
|
| 57 |
+
margin-bottom: 0em;
|
| 58 |
+
overflow: hidden;
|
| 59 |
+
border-radius: 10px;
|
| 60 |
+
transition: transform .7s;
|
| 61 |
+
/* Smooth transition for the container */
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
.custom-image-container:hover {
|
| 65 |
+
transform: scale(1.05);
|
| 66 |
+
/* Scale the container on hover */
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
.custom-image {
|
| 70 |
+
width: auto;
|
| 71 |
+
height: auto;
|
| 72 |
+
object-fit: cover;
|
| 73 |
+
border-radius: 10px;
|
| 74 |
+
transition: transform .7s;
|
| 75 |
+
margin-bottom: 0em;
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
.nsfw-filter {
|
| 79 |
+
filter: blur(8px); /* Apply a blur effect */
|
| 80 |
+
transition: filter 0.3s ease; /* Smooth transition for the blur effect */
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
.custom-image-container:hover .nsfw-filter {
|
| 84 |
+
filter: none; /* Remove the blur effect on hover */
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
.overlay {
|
| 88 |
+
position: absolute;
|
| 89 |
+
bottom: 0;
|
| 90 |
+
left: 0;
|
| 91 |
+
right: 0;
|
| 92 |
+
color: white;
|
| 93 |
+
width: 100%;
|
| 94 |
+
height: 40%;
|
| 95 |
+
display: flex;
|
| 96 |
+
flex-direction: column;
|
| 97 |
+
justify-content: center;
|
| 98 |
+
align-items: center;
|
| 99 |
+
font-size: 1vw;
|
| 100 |
+
font-style: bold;
|
| 101 |
+
text-align: center;
|
| 102 |
+
opacity: 0;
|
| 103 |
+
/* Keep the text fully opaque */
|
| 104 |
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
|
| 105 |
+
transition: opacity .5s;
|
| 106 |
+
}
|
| 107 |
+
.custom-image-container:hover .overlay {
|
| 108 |
+
opacity: 1;
|
| 109 |
+
/* Make the overlay always visible */
|
| 110 |
+
}
|
| 111 |
+
.overlay-text {
|
| 112 |
+
background: linear-gradient(45deg, #00000, #0000);
|
| 113 |
+
-webkit-background-clip: text;
|
| 114 |
+
color: transparent;
|
| 115 |
+
/* Fallback for browsers that do not support this effect */
|
| 116 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
|
| 117 |
+
/* Enhanced text shadow for better legibility */
|
| 118 |
+
|
| 119 |
+
.overlay-subtext {
|
| 120 |
+
font-size: 0.75em;
|
| 121 |
+
margin-top: 0.5em;
|
| 122 |
+
font-style: italic;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
.overlay,
|
| 126 |
+
.overlay-subtext {
|
| 127 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
| 128 |
+
}
|
| 129 |
+
|
| 130 |
+
</style>
|
| 131 |
+
|
| 132 |
+
<h1 class="title">
|
| 133 |
+
<span>Manga</span>
|
| 134 |
+
</h1>
|
| 135 |
+
<table class="custom-table">
|
| 136 |
+
<tr>
|
| 137 |
+
<td>
|
| 138 |
+
<div class="custom-image-container">
|
| 139 |
+
<img class="custom-image" src="https://enhanceai.s3.amazonaws.com/6554c034-54c0-4598-92a5-c51d1d8e2737_1.png" alt="sample1">
|
| 140 |
+
</div>
|
| 141 |
+
<div class="custom-image-container">
|
| 142 |
+
<img class="custom-image" src="https://enhanceai.s3.amazonaws.com/e5f99d8a-8e26-4169-80c3-b49b22ba0a06_2.png" alt="sample4">
|
| 143 |
+
</div>
|
| 144 |
+
</td>
|
| 145 |
+
<td>
|
| 146 |
+
<div class="custom-image-container">
|
| 147 |
+
<img class="custom-image" src="https://enhanceai.s3.amazonaws.com/642efe75-e842-4c76-a037-3a513ed20b1e_1.png" alt="sample2">
|
| 148 |
+
</div>
|
| 149 |
+
<div class="custom-image-container">
|
| 150 |
+
<img class="custom-image" src="https://enhanceai.s3.amazonaws.com/ee801a23-9acb-48af-bb31-92b370f5b9e5_1.png" alt="sample3">
|
| 151 |
+
</div>
|
| 152 |
+
</td>
|
| 153 |
+
<td>
|
| 154 |
+
<div class="custom-image-container">
|
| 155 |
+
<img class="custom-image" src="https://enhanceai.s3.amazonaws.com/76321b32-5913-4cc4-9ce4-46df67ce8d4f_2.png" alt="sample1">
|
| 156 |
+
</div>
|
| 157 |
+
<div class="custom-image-container">
|
| 158 |
+
<img class="custom-image" src="https://enhanceai.s3.amazonaws.com/6c110f5f-4de4-4ed5-95ca-49267a32ceec_1.png" alt="sample1">
|
| 159 |
+
</div>
|
| 160 |
+
</td>
|
| 161 |
+
</tr>
|
| 162 |
+
</table>
|
| 163 |
+
|
| 164 |
+
## Overview
|
| 165 |
+
|
| 166 |
+
**Manga** is Advance Manga Image Generate Ai Model From [EnhanceAi](https://enhanceai.art)
|
| 167 |
+
|
| 168 |
+
## Model Details
|
| 169 |
+
|
| 170 |
+
- **Try Now:** [EnhanceAi](https://enhanceai.art) 200 Image Generate Free
|
| 171 |
+
- **Developer By:** Pranav Ajay & Kushal Saho
|