PromptBase
Close icon
General
Home
Marketplace
Hire
Create
Login
Sell
Explore
🤖 GPT

Nft Generative Art Maker

Nft Generative Art Maker gpt prompt mini thumbnail
5.0Star icon
1 review
18Heart icon
Favorites
654Eye icon
Views
TestedTick icon
TipsTick icon
This awesome prompt will create Generative art that you can sell as NFTs.
...more
$3.99
Get prompt
After purchasing, you will gain access to the prompt file which you can use with GPT or the app builder. You'll receive 20 free generation credits with this purchase. By purchasing this prompt, you agree to our terms of service.
Over 1 month ago

Prompt Details

Model
Chat - GPT-3.5 (gpt-3.5-turbo)
Token size
78 ($0.00020 / call)
Example input
The NFT should only generate for 10 seconds and then stop and show the finalized art. also, it should generate random waves that generate gradient color tracers. the background should be black
Example output
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Generative NFT</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script> </head> <body style="background-color:black;"> <script> let startTime; function setup() { createCanvas(800, 800); noStroke(); startTime = millis(); } function draw() { if (millis() - startTime >= 10000) { noLoop(); } let x = random(width); let y = random(height); let size = random(100, 400); let alpha = random(50, 100); let c1 = color(random(255), random(255), random(255), alpha); let c2 = color(random(255), random(255), random(255), alpha); setGradient(x, y, size, size, c1, c2); } function setGradient(x, y, w, h, c1, c2) { for (let i = x; i <= x + w; i++) { let inter = map(i, x, x + w, 0, 1); let c = lerpColor(c1, c2, inter); for (let j = y; j <= y + h; j++) { fill(c); rect(i, j, 1, 1); } } } </script> </body> </html> To view the generative NFT, simply save this file as index.html and open it in your web browser.
  • Reviews for this prompt (1)
- Mar 19, 2023
5.0
Filled star iconFilled star iconFilled star iconFilled star iconFilled star icon
- Verified PurchaseTick icon
Browse Marketplace