Spaces:
Running
Running
File size: 18,986 Bytes
9a3032b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sentence Mining App</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.card-container {
perspective: 1000px;
}
.card {
transition: transform 0.6s, box-shadow 0.3s;
transform-style: preserve-3d;
}
.card:hover {
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.card-expanded {
transform: translateY(-10px);
}
.cube {
transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transform-origin: center;
backface-visibility: hidden;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
width: 24px;
height: 24px;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
text-align: center;
padding: 2px;
word-break: break-word;
}
.card-expanded .cube {
transform: translateX(0) !important;
opacity: 1 !important;
}
.original-text {
border-right: 2px dashed #cbd5e0;
}
.audio-btn {
transition: all 0.2s;
}
.audio-btn:hover {
transform: scale(1.1);
}
.audio-btn:active {
transform: scale(0.95);
}
</style>
</head>
<body class="bg-gray-50 min-h-screen py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-4xl mx-auto">
<header class="text-center mb-12">
<h1 class="text-4xl font-bold text-indigo-700 mb-2">Sentence Mining</h1>
<p class="text-lg text-gray-600">Click on cards to reveal translations and breakdowns</p>
</header>
<div class="space-y-8">
<!-- Card 1 -->
<div class="card-container">
<div class="card bg-white rounded-xl shadow-md overflow-hidden cursor-pointer">
<div class="flex flex-col md:flex-row">
<!-- Left side - Original text -->
<div class="original-text p-6 md:w-1/2 flex flex-col">
<div class="flex items-center justify-between mb-4">
<span class="text-sm font-medium text-indigo-600 bg-indigo-50 px-3 py-1 rounded-full">Japanese</span>
<button class="audio-btn bg-indigo-100 p-2 rounded-full text-indigo-700 hover:bg-indigo-200">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.536 8.464a5 5 0 010 7.072m2.828-9.9a9 9 0 010 12.728M5.586 15H4a1 1 0 01-1-1v-4a1 1 0 011-1h1.586l4.707-4.707C10.923 3.663 12 4.109 12 5v14c0 .891-1.077 1.337-1.707.707L5.586 15z" />
</svg>
</button>
</div>
<p class="text-2xl font-medium text-gray-800 mb-4">今日はとても疲れています。</p>
<div class="mt-auto flex items-center text-sm text-gray-500">
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
Added 2 days ago
</div>
</div>
<!-- Right side - Cubes -->
<div class="p-6 md:w-1/2 relative overflow-hidden cube-container" style="min-height: 180px;">
<!-- Sentence parts as uniform cubes -->
<div class="cube absolute">I'm</div>
<div class="cube absolute">very</div>
<div class="cube absolute">tired</div>
<div class="cube absolute">today</div>
<div class="cube absolute">.</div>
<div class="cube absolute bg-indigo-100 text-indigo-700">I'm very tired today.</div>
</div>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="card-container">
<div class="card bg-white rounded-xl shadow-md overflow-hidden cursor-pointer">
<div class="flex flex-col md:flex-row">
<!-- Left side - Original text -->
<div class="original-text p-6 md:w-1/2 flex flex-col">
<div class="flex items-center justify-between mb-4">
<span class="text-sm font-medium text-emerald-600 bg-emerald-50 px-3 py-1 rounded-full">Spanish</span>
<button class="audio-btn bg-emerald-100 p-2 rounded-full text-emerald-700 hover:bg-emerald-200">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.536 8.464a5 5 0 010 7.072m2.828-9.9a9 9 0 010 12.728M5.586 15H4a1 1 0 01-1-1v-4a1 1 0 011-1h1.586l4.707-4.707C10.923 3.663 12 4.109 12 5v14c0 .891-1.077 1.337-1.707.707L5.586 15z" />
</svg>
</button>
</div>
<p class="text-2xl font-medium text-gray-800 mb-4">¿Dónde está la biblioteca?</p>
<div class="mt-auto flex items-center text-sm text-gray-500">
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
Added 1 week ago
</div>
</div>
<!-- Right side - Cubes -->
<div class="p-6 md:w-1/2 flex flex-wrap justify-between items-center relative overflow-hidden" style="min-height: 180px;">
<!-- Cubes will be positioned absolutely -->
<div class="cube absolute w-16 h-16 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateX(150px) rotate(15deg); opacity: 0; transition-delay: 0.1s;">Where</div>
<div class="cube absolute w-16 h-16 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateX(-150px) rotate(-15deg); opacity: 0; transition-delay: 0.2s;">is</div>
<div class="cube absolute w-20 h-20 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateY(80px) rotate(10deg); opacity: 0; transition-delay: 0.3s;">the</div>
<div class="cube absolute w-24 h-24 rounded-lg bg-emerald-100 shadow-sm flex items-center justify-center font-medium text-emerald-700" style="transform: scale(0.3) rotate(30deg); opacity: 0; transition-delay: 0.4s;">library</div>
<div class="cube absolute w-28 h-28 rounded-lg bg-white shadow-md flex items-center justify-center font-medium" style="transform: scale(0.8); opacity: 0; transition-delay: 0.5s;">Where is the library?</div>
</div>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="card-container">
<div class="card bg-white rounded-xl shadow-md overflow-hidden cursor-pointer">
<div class="flex flex-col md:flex-row">
<!-- Left side - Original text -->
<div class="original-text p-6 md:w-1/2 flex flex-col">
<div class="flex items-center justify-between mb-4">
<span class="text-sm font-medium text-amber-600 bg-amber-50 px-3 py-1 rounded-full">French</span>
<button class="audio-btn bg-amber-100 p-2 rounded-full text-amber-700 hover:bg-amber-200">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.536 8.464a5 5 0 010 7.072m2.828-9.9a9 9 0 010 12.728M5.586 15H4a1 1 0 01-1-1v-4a1 1 0 011-1h1.586l4.707-4.707C10.923 3.663 12 4.109 12 5v14c0 .891-1.077 1.337-1.707.707L5.586 15z" />
</svg>
</button>
</div>
<p class="text-2xl font-medium text-gray-800 mb-4">Je voudrais un café, s'il vous plaît.</p>
<div class="mt-auto flex items-center text-sm text-gray-500">
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
Added 3 days ago
</div>
</div>
<!-- Right side - Cubes -->
<div class="p-6 md:w-1/2 flex flex-wrap justify-between items-center relative overflow-hidden" style="min-height: 180px;">
<!-- Cubes will be positioned absolutely -->
<div class="cube absolute w-16 h-16 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateX(180px) translateY(-50px); opacity: 0; transition-delay: 0.1s;">I would</div>
<div class="cube absolute w-16 h-16 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateX(-180px) translateY(50px); opacity: 0; transition-delay: 0.2s;">like</div>
<div class="cube absolute w-20 h-20 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateX(100px) translateY(100px); opacity: 0; transition-delay: 0.3s;">a coffee</div>
<div class="cube absolute w-16 h-16 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateX(-100px) translateY(-100px); opacity: 0; transition-delay: 0.4s;">please</div>
<div class="cube absolute w-28 h-28 rounded-lg bg-amber-100 shadow-sm flex items-center justify-center font-medium text-amber-700" style="transform: scale(0.6); opacity: 0; transition-delay: 0.5s;">I would like a coffee, please</div>
</div>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="card-container">
<div class="card bg-white rounded-xl shadow-md overflow-hidden cursor-pointer">
<div class="flex flex-col md:flex-row">
<!-- Left side - Original text -->
<div class="original-text p-6 md:w-1/2 flex flex-col">
<div class="flex items-center justify-between mb-4">
<span class="text-sm font-medium text-purple-600 bg-purple-50 px-3 py-1 rounded-full">German</span>
<button class="audio-btn bg-purple-100 p-2 rounded-full text-purple-700 hover:bg-purple-200">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.536 8.464a5 5 0 010 7.072m2.828-9.9a9 9 0 010 12.728M5.586 15H4a1 1 0 01-1-1v-4a1 1 0 011-1h1.586l4.707-4.707C10.923 3.663 12 4.109 12 5v14c0 .891-1.077 1.337-1.707.707L5.586 15z" />
</svg>
</button>
</div>
<p class="text-2xl font-medium text-gray-800 mb-4">Wie spät ist es?</p>
<div class="mt-auto flex items-center text-sm text-gray-500">
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
Added yesterday
</div>
</div>
<!-- Right side - Cubes -->
<div class="p-6 md:w-1/2 flex flex-wrap justify-between items-center relative overflow-hidden" style="min-height: 180px;">
<!-- Cubes will be positioned absolutely -->
<div class="cube absolute w-20 h-20 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateX(120px) rotate(45deg); opacity: 0; transition-delay: 0.1s;">What</div>
<div class="cube absolute w-20 h-20 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateX(-120px) rotate(-45deg); opacity: 0; transition-delay: 0.2s;">time</div>
<div class="cube absolute w-16 h-16 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateY(120px); opacity: 0; transition-delay: 0.3s;">is</div>
<div class="cube absolute w-16 h-16 rounded-lg shadow-sm flex items-center justify-center text-sm font-medium" style="transform: translateY(-120px); opacity: 0; transition-delay: 0.4s;">it</div>
<div class="cube absolute w-24 h-24 rounded-lg bg-purple-100 shadow-sm flex items-center justify-center font-medium text-purple-700" style="transform: scale(0.4); opacity: 0; transition-delay: 0.5s;">What time is it?</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
const cards = document.querySelectorAll('.card');
function scatterCubes(cubes, container) {
const containerRect = container.getBoundingClientRect();
cubes.forEach(cube => {
const maxX = containerRect.width - cube.offsetWidth;
const maxY = containerRect.height - cube.offsetHeight;
const angle = Math.random() * 2 * Math.PI;
const distance = Math.random() * 60;
const x = Math.cos(angle) * distance + (Math.random() * maxX * 0.5);
const y = Math.sin(angle) * distance + (Math.random() * maxY * 0.5);
const rot = (Math.random() - 0.5) * 40;
const scale = 0.95 + Math.random() * 0.1;
cube.style.transition = 'all 0.8s ease-in-out';
cube.style.left = `${x}px`;
cube.style.top = `${y}px`;
cube.style.transform = `rotate(${rot}deg) scale(${scale})`;
cube.style.opacity = '0.8';
});
}
function arrangeCubes(cubes, container) {
const containerRect = container.getBoundingClientRect();
const cols = 4;
const cubeSize = 24;
const padding = 8;
const totalWidth = (cols * (cubeSize + padding)) - padding;
const startX = (containerRect.width - totalWidth) / 2;
cubes.forEach((cube, index) => {
const row = Math.floor(index / cols);
const col = index % cols;
const x = startX + (col * (cubeSize + padding));
const y = 20 + (row * (cubeSize + padding));
cube.style.transition = `all 0.8s ease-in-out ${index * 50}ms`;
cube.style.left = `${x}px`;
cube.style.top = `${y}px`;
cube.style.transform = 'rotate(0deg) scale(1)';
cube.style.opacity = '1';
});
}
cards.forEach(card => {
const cubes = card.querySelectorAll('.cube');
const container = card.querySelector('.cube-container') || card.querySelector('[class*="cube-container"], [class*="relative"]');
// Initial scatter
scatterCubes(cubes, container);
card.addEventListener('click', function () {
const isExpanded = this.classList.toggle('card-expanded');
if (isExpanded) {
arrangeCubes(cubes, container);
} else {
scatterCubes(cubes, container);
}
});
});
// Audio button functionality
const audioButtons = document.querySelectorAll('.audio-btn');
audioButtons.forEach(button => {
button.addEventListener('click', function (e) {
e.stopPropagation(); // Prevent triggering card
console.log('Playing audio for this sentence');
this.classList.add('animate-ping');
setTimeout(() => this.classList.remove('animate-ping'), 300);
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ArthurZ/flash-card" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |