Editor de Imagens com 1000+ Efeitos
About this app
Edite suas imagens com mais de 1000 efeitos diferentes. Modo IA para criar efeitos automaticamente.
Editor de Imagens com 1000+ Efeitos Editor de Imagens com 1000+ Efeitos Selecionar Imagem Efeito 1 Efeito 2 Efeito 3 Gerar Efeitos Aleatórios
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Editor de Imagens com 1000+ Efeitos</title>
<meta name="description" content="Edite suas imagens com mais de 1000 efeitos diferentes. Modo IA para criar efeitos automaticamente.">
<meta name="keywords" content="editor de imagens, efeitos, IA, inteligência artificial">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
});
// Function to handle image upload
function handleImageUpload(event) {
const file = event.target.files[0];
const reader = new FileReader();
reader.onload = function(e) {
const imgData = e.target.result;
// Process the image data here
}
reader.readAsDataURL(file);
}
// Function to apply effects manually
function applyEffect(effect) {
// Apply the selected effect to the image
}
// Function to generate AI effects
function generateAIEffects() {
// Use AI to generate random effects for the image
}
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
background-color: #f3f3f3;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #333;
}
.upload-btn-wrapper {
position: relative;
overflow: hidden;
display: inline-block;
}
.btn {
border: 2px solid gray;
color: gray;
background-color: white;
padding: 8px 20px;
border-radius: 8px;
font-size: 20px;
font-weight: bold;
}
.upload-btn-wrapper input[type=file] {
font-size: 100px;
position: absolute;
left: 0;
top: 0;
opacity: 0;
}
.image-preview {
margin-top: 20px;
text-align: center;
}
.image-preview img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
.effects-container {
margin-top: 20px;
}
.effect {
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
background-color: #ccc;
padding: 10px;
border-radius: 8px;
cursor: pointer;
}
.effect:hover {
background-color: #aaa;
}
.generate-btn {
display: block;
margin: 20px auto;
text-align: center;
}
.generate-btn .btn {
background-color: #007bff;
color: white;
border-color: #007bff;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Editor de Imagens com 1000+ Efeitos</h1>
<div class="upload-btn-wrapper">
<button class="btn">Selecionar Imagem</button>
<input type="file" onchange="handleImageUpload(event)">
</div>
<div class="image-preview">
<img id="preview-image" src="#" alt="Imagem Preview">
</div>
<div class="effects-container">
<div class="effect" onclick="applyEffect('effect1')">Efeito 1</div>
<div class="effect" onclick="applyEffect('effect2')">Efeito 2</div>
<div class="effect" onclick="applyEffect('effect3')">Efeito 3</div>
<!-- Add more effects here -->
</div>
<div class="generate-btn">
<button class="btn" onclick="generateAIEffects()">Gerar Efeitos Aleatórios</button>
</div>
</div>
<script>
// App Javascript Goes Here. Place your entire script content here.
</script>
</body>
</html>
NEW APPS
These are apps made by the community!