Compare commits

...

11 Commits

14 changed files with 253 additions and 19 deletions
+112
View File
@@ -0,0 +1,112 @@
/*=============Typo*/
@font-face {
font-family: 'lineal';
src: url('../typo/Lineal-Heavy.ttf');
}
@font-face {
font-family: 'pressStart2P';
src: url('../typo/PressStart2P-Regular.ttf');
}
@font-face {
font-family: 'velvelyne';
src: url('../typo/Velvelyne-Light.ttf') format('truetype');
font-weight:lighter;
}
@font-face {
font-family: 'velvelyne';
src:url('../typo/Velvelyne-Bold.ttf') format('truetype');
font-weight: bold;
}
/*============General*/
body, html {
padding: 0;
margin: 0;
}
body {
min-width: 100vw;
min-height: 100vh;
overflow: auto;
}
:root {
--back-color: black;
--main-color: white;
--accent-color: #3CFF00;
--neon-color: #3CFF00;
color: var(--main-color);
font-size: 1rem;
background: var(--back-color);
font-family: 'velvelyne', sans-serif;
font-weight: bold;
}
body > *{
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 15px;
}
/*===================Animation*/
@keyframes blink {
0% { color: var(--accent-color);}
15% { color: var(--main-color);}
35% { color: var(--main-color);}
50% { color: var(--accent-color);}
65% { color: var(--main-color);}
85% { color: var(--main-color);}
100% { color: var(--accent-color);}
}
/*===================Layout*/
#welcome-panel {
text-align: center;
}
#welcome-panel strong{
font-family:'lineal';
font-weight: normal;
font-size: 22.2px;
}
h1 {
font-family: 'lineal', sans-serif;
font-weight: bolder;
}
h2{
font-family: 'pressStart2P';
font-size: 13.12px;
font-weight: normal;
animation: blink 1.61s infinite;
}
#ui-canvas {
display: block;
height: 1350px;
width: 1080px;
margin-left: auto;
margin-right: auto;
}
canvas{
max-width: 100%;
}
#cutter-panel{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3.33px;
margin-top: 13.12px;
}
#download{
margin: 7.77px;
}
+47
View File
@@ -0,0 +1,47 @@
const FORM = document.getElementById("cutter-form")
const BUTTON = document.getElementById("download")
const IMAGE = new Image()
let rowCount
let maxCount
FORM.addEventListener("submit", e => {
e.preventDefault()
const data = new FormData(FORM)
IMAGE.src = URL.createObjectURL(data.get('image'))
rowCount = data.get('rows')
console.log('ça marche :', data)
})
IMAGE.addEventListener('load', e => {
document.getElementById('cutter-panel').replaceChildren()
for(let i = 0; i<rowCount; i++){
for (let j = 0; j<3; j++){
let e = document.createElement('canvas')
e.width = 1080
e.height = 1350
let context = e.getContext('2d')
context.fillStyle = 'black'
context.drawImage(IMAGE,
j*(1080*0.94), i*1350,
1080*0.94, 1350,
1080*0.03, 0,
1080*0.94, 1350
)
document.getElementById('cutter-panel').append(e)
}
}
})
BUTTON.addEventListener('click', e => {
let imgList = document.querySelectorAll('canvas')
maxCount = imgList.length
for (let [i, img] of imgList.entries()){
img.toBlob(b => {
let aEl = document.createElement('a')
let index = maxCount - i
aEl.href = URL.createObjectURL(b)
aEl.download = 'img-' + index + '.jpg'
aEl.click()
},'image/jpeg',1)
}
})
+30
View File
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="cutter.css">
<title>Insta Ninja</title>
</head>
<body>
<form id="cutter-form">
<div id="welcome-panel">
<h1>Insta Ninja</h1>
<h2>Séléctionne un photo pour la découper<br>en une grille au format du feed insta<br></h2>
<p><strong>Attention :</strong> pour un permettre le bon affichage de la miniature sur le feed,<br>
il faut que <strong>la largeur de l'image d'entrée soit de 3 x (1080 x 0.94) = 3045 px</strong><br><br>
Pour la hauteur, il suffit de multiplier 1350 par le nombre de ligne voulu<br><br>
Ex : pour 6 post, soit <strong>2 lignes sur les 3 colonnes</strong> qui sont imposées par insta<br>
il faut que le format de l'image que tu crée soit <strong>3045 px de large par 2700 px de haut</strong></p>
<input type="number" name="rows" value="2" min="1">
<input type="file" name="image" accept="image/jpg,image/jpeg,image/png,image/webp" required/>
<button>Cut !</button>
</div>
<div id="cutter-panel">
</div>
<button id="download">Télécharger !</button>
</form>
<script type="module" src="cutter.js"></script>
</body>
</html>
+3 -3
View File
@@ -1769,9 +1769,9 @@
}
},
"node_modules/vite": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
"integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
"version": "7.3.2",
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz",
"integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==",
"dev": true,
"license": "MIT",
"dependencies": {
+6 -1
View File
@@ -1,3 +1,8 @@
[
"vga_nar6_ta"
"vga_nar6_ta",
"openup42",
"berthasse",
"arlsn",
"djstarheartzzz",
"openup42"
]
@@ -6,5 +6,25 @@
{
"name": "drags_nerds",
"folder": 2
},
{
"name": "berthasse",
"folder": 1
},
{
"name": "berthasse",
"folder": 0
},
{
"name": "arlsn",
"folder": 1
},
{
"name": "djstarheartzzz",
"folder": 1
},
{
"name": "openup42",
"folder": 1
}
]
+6
View File
@@ -136,6 +136,7 @@ html, body{
height: 100%;
filter: invert(1) saturate(333%) brightness(93%) hue-rotate(90deg);
object-fit: cover;
transition: 7.77s ease-in;
}
#canvas .overlay {
@@ -300,11 +301,16 @@ html, body{
}
.zFocus{
z-index: revert;
z-index: 1312;
border-color: var(--accent-color);
border-width: thick;
}
#artistPannel.zFocus{
z-index: 3333;
}
.windowTitle{
width:100%;
height:50px;
+14 -5
View File
@@ -10,10 +10,12 @@ function idAndDate(str){
function titleAndContent(str){
let data = str.split(" :");
let title = "NO_TITLE";
let contentData = [""];
if (data.length > 1){
title = data[0];
} else {
contentData = data[0].split('<br>').filter(e => e);
}
let contentData = [""];
if (data[1]){
contentData = data[1].split('<br>').filter(e => e);
}
@@ -22,7 +24,7 @@ function titleAndContent(str){
for(let line of contentData){
if(line.includes('http')||line.includes('@')){
let linkData = line.split("# ");
console.log(linkData[1]);
//console.log(linkData[1]);
let linkNoFormat;
let url = "";
if (linkData[1].includes('http')){
@@ -31,7 +33,7 @@ function titleAndContent(str){
} else if (linkData[1].includes('@')){
url = 'mailto:' + linkData[1];
}
console.log("url info", url)
//console.log("url info", url)
src.push({
caption: linkData[0],
url: url
@@ -87,7 +89,14 @@ export async function loadPeopleData() {
for (const user of pData){
const pouet = filtered.find(p => p.account.username === user.name || p.reblog?.account.username === user.name);
if (pouet){
description[user.name] = pouet.account.note;
let descData = pouet.account.note.split('<br>').filter(e => e);
if(descData.length > 0){
for (let line of descData){
description[user.name] += '\n' + line;
}
} else {
description[user.name] = 'NO DESCRIPTION'
}
}
}
@@ -129,7 +138,7 @@ export async function loadPeopleData() {
dateInfo: selectedPouet.created_at,
type: "link",
author: displayName,
caption: textInfos.title + '.liens',
caption: textInfos.title + '.plus',
links: textInfos.links,
description: textInfos.content,
isSelected: false
@@ -23,10 +23,10 @@
<div id="contactText">
<p>Si tu veux nous contacter directement, tu peux:<br>&emsp;- nous envoyer un mail<br>&emsp;- ou un DM sur insta</p>
</div>
<a href="mailto:drags-nerds@epickiwi.fr" class="textBtnStyle" @touchstart.stop @mousedown.stop>
<a href="mailto:drags-nerds@epickiwi.fr" class="textBtnStyle" @touchstart.stop @mousedown.stop target="_blank">
E-MAIL
</a>
<a href="https://www.instagram.com/drags_nerds/?utm_source=ig_web_button_share_sheet" class="textBtnStyle" @touchstart.stop @mousedown.stop>
<a href="https://www.instagram.com/drags_nerds/?utm_source=ig_web_button_share_sheet" class="textBtnStyle" @touchstart.stop @mousedown.stop target="_blank">
INSTA
</a>
</div>
@@ -20,11 +20,14 @@
</button>
</div>
<div class="windowContent">
<p>On a besoin de ton aide ! <br><br> Si tu penses que tu as les moyens<br>de nous faire une petite donation,<br> toute participation est la bienvenue et<br>ça nous aiderait bien à démarrer le projet ^^</p>
<p>
Aujourdhui, nous avons besoin<br>dun coup de pouce pour<br>notre show du 22 mai.<br><br>
Cette cagnotte a pour objectif de financer<br>la rémunération des artistes drag et nerd participant·es, de soutenir le travail<br>de léquipe lorga, ainsi que dinvestir dans le développement de Drags & Nerds<br>afin de vous proposer encore plus dévénements à lavenir !<br><br>
Chaque don compte, vraiment.<br><br>
Merci du fond du cœur à tous·tes cell·eux qui prendront le temps de lire, de partager<br>et, bien sûr, de participer !
</p>
<div id="linkRow">
<a href="#" class="textBtnStyle">Lydia</a>
<a href="#" class="textBtnStyle">Paypal</a>
<a href="#" class="textBtnStyle">SumUp</a>
<a href="https://pots.lydia.me/collect/pots?id=4298-appel-aux-dons-drags-nerds-2e-edition" class="textBtnStyle" target="_blank" @mousedown.stop @touchstart.stop>Cagnotte Lydia</a>
</div>
</div>
</div>
@@ -76,7 +79,7 @@
}
#linkRow .textBtnStyle{
width: 27%;
width: 77.7%;
height: 50px;
margin-bottom: 16.1px;
}
@@ -104,7 +104,7 @@
emits: ['close','focus'],
computed: {
selectedLink(){
console.log(this.selectedLink);
//console.log(this.selectedLink);
return dataStorage.selectedLink
}
},
@@ -21,7 +21,8 @@
</button>
</div>
<div class="windowContent" id="visualizerContent">
<video controls id="displayedImgStyle" :src="selectedVideo.src"></video>
<video controls id="displayedImgStyle" :src="selectedVideo.src" :type="selectedVideo.format">
</video>
<div class="reactBar">
<p class="reactStatStyle">{{selectedVideo.like}}</p>
<button data-tooltip="j'aime bien" type="button" class="iconBtnStyle" :class="{reactedStyle: selectedVideo.isLiked}" @mousedown.capture="likeImg" @touchstart.capture="likeImg">
@@ -42,7 +42,7 @@
si tu as envie de participer !
</p>
<button type="button" class="textBtnStyle" @click="openPannel('follow')">NOUS SUIVRE HORS DES RÉSEAUX!</button>
<button type="button" class="textBtnStyle" @click="openPannel('donation')" v-show="false">NOUS FAIRE UNE DONATION</button>
<button type="button" class="textBtnStyle" @click="openPannel('donation')">NOUS FAIRE UNE DONATION</button>
<button type="button" class="textBtnStyle" id="ticketButton" @click="openPannel('ticket')" v-show="false">RÉSERVER MA PLACE!</button>
</div>
<div id="btnColumn">
+1
View File
@@ -20,6 +20,7 @@ export default defineConfig({
input: {
main: path.resolve(import.meta.dirname, 'index.html'),
glitcher: path.resolve(import.meta.dirname, 'glitcher/index.html'),
cutter: path.resolve(import.meta.dirname, 'cutter/index.html')
},
},
}