-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
826 lines (696 loc) · 31 KB
/
index.html
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://cdn.jsdelivr.net/gh/hiukim/mind-ar-js@1.1.4/dist/mindar-image.prod.js"></script>
<script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/hiukim/mind-ar-js@1.1.4/dist/mindar-image-aframe.prod.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<style>
.galeria {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.galeria img {
max-width: 100%;
height: auto;
}
.galeria p {
font-size: 16px;
text-align: center;
margin-top: 10px;
}
.imagen-galeria {
width: 300px;
/* Ajusta este valor según tus necesidades */
height: auto;
}
.galeria-fotos {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 20px;
}
.imagen-galeria-foto {
width: 150px;
/* Ajusta este valor según tus necesidades */
height: auto;
border: 2px solid #ccc;
border-radius: 5px;
margin-right: 60px;
animation: desplazamiento 10s linear infinite;
}
@keyframes desplazamiento {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
</style>
<script>
const showInfo = () => {
const microButton = document.querySelector("#micro-button");
const infoButton = document.querySelector("#info-button");
const webButton = document.querySelector("#web-button");
const gitButton = document.querySelector("#git-button");
const text = document.querySelector("#text");
microButton.setAttribute("visible", true);
setTimeout(() => {
infoButton.setAttribute("visible", true);
}, 300);
setTimeout(() => {
webButton.setAttribute("visible", true);
}, 600);
setTimeout(() => {
gitButton.setAttribute("visible", true);
}, 900);
webButton.addEventListener('click', function () {
window.location.href = "https://www.youtube.com/watch?v=nuyE26sssMQ&ab_channel=NSTV";
});
infoButton.addEventListener('click', function () {
window.location.href = "https://www.google.com/maps/place/TecNM+Instituto+Tecnol%C3%B3gico+de+Tlaxiaco/@17.2499778,-97.6917487,15z/data=!4m2!3m1!1s0x0:0xabdf1f0ebfc924cf?sa=X&ved=1t:2428&ictx=111";
});
gitButton.addEventListener('click', function () {
window.location.href = "https://www.tlaxiaco.tecnm.mx/directorio-electronico/";
});
}
const showPortfolio = (done) => {
const portfolio = document.querySelector("#portfolio-panel");
const portfolioLeftButton = document.querySelector("#portfolio-left-button");
const portfolioRightButton = document.querySelector("#portfolio-right-button");
const paintandquestPreviewButton = document.querySelector("#paintandquest-preview-button");
let y = 0;
let currentItem = 0;
portfolio.setAttribute("visible", true);
const showPortfolioItem = (item) => {
for (let i = 0; i <= 2; i++) {
document.querySelector("#portfolio-item" + i).setAttribute("visible", i === item);
}
}
const id = setInterval(() => {
y += 0.008;
if (y >= 0.6) {
clearInterval(id);
portfolioLeftButton.setAttribute("visible", true);
portfolioRightButton.setAttribute("visible", true);
portfolioLeftButton.addEventListener('click', () => {
currentItem = (currentItem + 1) % 3;
showPortfolioItem(currentItem);
});
portfolioRightButton.addEventListener('click', () => {
currentItem = (currentItem - 1 + 3) % 3;
showPortfolioItem(currentItem);
});
paintandquestPreviewButton.addEventListener('click', () => {
paintandquestPreviewButton.setAttribute("visible", false);
const testVideo = document.createElement("video");
const canplayWebm = testVideo.canPlayType('video/webm; codecs="vp8, vorbis"');
if (canplayWebm == "") {
document.querySelector("#paintandquest-video-link").setAttribute("src", "#paintandquest-video-mp4");
document.querySelector("#paintandquest-video-mp4").play();
} else {
document.querySelector("#paintandquest-video-link").setAttribute("src", "#paintandquest-video-webm");
document.querySelector("#paintandquest-video-webm").play();
}
});
setTimeout(() => {
done();
}, 500);
}
portfolio.setAttribute("position", "0 " + y + " -0.01");
}, 10);
}
const showAvatar = (onDone) => {
const avatar = document.querySelector("#avatar");
let z = -0.3;
const id = setInterval(() => {
z += 0.008;
if (z >= 0.3) {
clearInterval(id);
onDone();
}
avatar.setAttribute("position", "0 -0.25 " + z);
}, 10);
}
AFRAME.registerComponent('mytarget', {
init: function () {
this.el.addEventListener('targetFound', event => {
console.log("target found");
showAvatar(() => {
//
setTimeout(() => {
showInfo();
}, 300);
});
});
this.el.addEventListener('targetLost', event => {
console.log("target found");
});
//this.el.emit('targetFound');
}
});
</script>
<style>
body {
margin: 0;
}
.example-container {
overflow: hidden;
position: absolute;
width: 100%;
height: 100%;
}
#example-scanning-overlay {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: transparent;
z-index: 2;
}
@media (min-aspect-ratio: 1/1) {
#example-scanning-overlay .inner {
width: 50vh;
height: 50vh;
}
}
@media (max-aspect-ratio: 1/1) {
#example-scanning-overlay .inner {
width: 80vw;
height: 80vw;
}
}
#example-scanning-overlay .inner {
display: flex;
align-items: center;
justify-content: center;
position: relative;
background:
linear-gradient(to right, white 10px, transparent 10px) 0 0,
linear-gradient(to right, white 10px, transparent 10px) 0 100%,
linear-gradient(to left, white 10px, transparent 10px) 100% 0,
linear-gradient(to left, white 10px, transparent 10px) 100% 100%,
linear-gradient(to bottom, white 10px, transparent 10px) 0 0,
linear-gradient(to bottom, white 10px, transparent 10px) 100% 0,
linear-gradient(to top, white 10px, transparent 10px) 0 100%,
linear-gradient(to top, white 10px, transparent 10px) 100% 100%;
background-repeat: no-repeat;
background-size: 40px 40px;
}
#example-scanning-overlay.hidden {
display: none;
}
#example-scanning-overlay img {
opacity: 0.6;
width: 90%;
align-self: center;
}
#example-scanning-overlay .inner .scanline {
position: absolute;
width: 100%;
height: 10px;
background: white;
animation: move 2s linear infinite;
}
@keyframes move {
0%,
100% {
top: 0%
}
50% {
top: calc(100% - 10px)
}
}
#text {
font-family: Verdana;
font-family: Vegur, 'PT Sans', Verdana, sans-serif;
}
.contenedor {
margin: 0px;
height: 100vh;
width: 100vw;
background-image: radial-gradient(circle at 52.12% 74.26%, #a225c9 0, #8120b8 25%, #5f19a4 50%, #3c1290 75%, #110d7c 100%);
position: fixed;
z-index: 9999;
transition: all 1.5s;
}
.carga,
.carga:before,
.carga:after {
width: 100%;
height: 100%;
}
.rotate-45 {
transform-origin: center;
transform: rotate(45deg)
}
.rotate {
transform-origin: center;
animation: rotate 1s ease-in-out infinite;
}
.rotate-back {
transform-origin: center;
animation: rotate 1s ease-in-out infinite;
animation-direction: reverse;
}
.left1 {
animation: moved 1s ease-in-out infinite;
}
.right1 {
animation: moved 1s ease-in-out infinite;
}
@keyframes rotate {
100% {
transform: rotate(calc(90deg + 45deg))
}
}
@keyframes moved {
50% {
transform: translate(-30px, -30px)
}
}
</style>
<script>
window.addEventListener('load', () => {
const contenedor = document.querySelector('.contenedor');
contenedor.style.visibility = 'hidden';
contenedor.style.opacity = 0;
contenedor.setAttribute("visible", false);
});
</script>
</head>
<body>
<div id="galeriaContainer"></div>
<div id="videoContainer"></div>
<div class="contenedor">
<svg class="carga" width="1000" height="1000" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"
version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink">
<g transform="translate(500,500)">
<rect class="rotate-45 rotate-back" x=-5 y=-5 width=10 height=10 stroke="white" stroke-width=20 fill="none" />
<rect class="rotate-45 rotate" x=-50 y=-50 width=100 height=100 stroke="#E766B6" stroke-width=20
stroke-linejoin="bevel" fill="none" />
<g transform="translate(-50,0) rotate(-45)">
<polyline class="left1" points="40,-40 50,-50 -40,-50 -50,-40 -50,50 -40,40" stroke="black" stroke-width=20
fill="none" />
</g>
<g transform="translate(50,0) rotate(135)">
<polyline class="right1" points="40,-40 50,-50 -40,-50 -50,-40 -50,50 -40,40" stroke="white" stroke-width=20
fill="none" />
</g>
<text y=-140 text-anchor="middle" font-weight="bold" font-size="3em" font-family="Bebas Neue">Cargando
componetes...</text>
</g>
<g transform="translate(435,435) scale(5 5)">
<g xmlns="http://www.w3.org/2000/svg" fill="#212121" stroke-width=20>
<path
d="m12.29 21.499c3.73 0 8.94.09 10.835-3.701.715-1.449.875-3.122.875-4.7h-.001c0-2.073-.575-4.047-1.95-5.651.786-2.363.26-3.756-.345-4.948-2.24 0-3.69.42-5.39 1.742-2.746-.653-5.856-.571-8.455.04-1.725-1.336-3.175-1.781-5.44-1.781-.621 1.237-1.136 2.599-.344 4.977-2.676 3.083-2.466 7.566-1.065 10.322 1.97 3.835 7.49 3.7 11.28 3.7zm-5.289-9.99c.95 0 1.865.168 2.8.297 3.418.52 5.215-.297 7.31-.297 2.339 0 3.675 1.915 3.675 4.087 0 4.349-4.015 5.012-7.53 5.012-2.419-.163-9.93.976-9.93-5.012 0-2.172 1.334-4.087 3.675-4.087z"
fill="#ffffff" data-original="#212121" />
<path
d="m16.655 18.323c1.29 0 1.835-1.692 1.835-2.727s-.545-2.727-1.835-2.727-1.835 1.692-1.835 2.727.545 2.727 1.835 2.727z"
fill="#ffffff" data-original="#212121" />
<path
d="m7.47 18.323c1.29 0 1.835-1.692 1.835-2.727s-.546-2.726-1.835-2.726-1.835 1.692-1.835 2.727.545 2.726 1.835 2.726z"
fill="#ffffff" data-original="#212121" />
</g>
</g>
</svg>
</div>
<div class="example-container">
<div id="example-scanning-overlay" class="hidden">
<div class="inner">
<img src="assets/Cardq.jpeg" />
<div class="scanline"></div>
</div>
</div>
<a-scene
mindar-image="imageTargetSrc: https://cdn.glitch.global/16b440ad-e892-4085-9aee-0cf4887d328f/targets%20(3).mind?v=1647492652448; showStats: false; uiScanning: #example-scanning-overlay;"
embedded color-space="sRGB" renderer="colorManagement: true, physicallyCorrectLights" vr-mode-ui="enabled: false"
device-orientation-permission-ui="enabled: false" loading-screen="backgroundColor: black">
<a-assets>
<img id="card" src="assets/Cardq.jpeg" />
<img id="icon-micro" src="Assets/icons/microfono.png" />
<img id="icon-idea" src="Assets/icons/idea.png" />
<img id="icon-web" src="Assets/icons/youtube.png" />
<img id="icon-info" src="Assets/icons/mapa.png" />
<img id="icon-git" src="Assets/icons/directorio-telefonico.png" />
<img id="icon-play" src="Assets/icons/play.png" />
<img id="icon-left" src="Assets/icons/left.png" />
<img id="icon-right" src="Assets/icons/right.png" />
<img id="paintandquest-preview" src="Assets/portfolio/preview.png" />
<video id="paintandquest-video-mp4" autoplay="false" loop="true" src="Assets/portfolio/prev.mp4"></video>
<video id="paintandquest-video-webm" autoplay="false" loop="true" src="Assets/portfolio/prev.webm"></video>
<img id="coffeemachine-preview" src="Assets/portfolio/1.png" />
<img id="peak-preview" src="Assets/portfolio/2.png" />
<a-asset-item id="Modelo3D" src="Assets/Yakuin Colorbboy.glb"scale="0.001 0.001 0.001">
</a-asset-item>
<!-- a-asset-item id="iron" src="https://cdn.glitch.global/16b440ad-e892-4085-9aee-0cf4887d328f/iron.glb?v=1653086416853"></a-asset-item>
<a-asset-item id="luna" src="https://cdn.glitch.global/16b440ad-e892-4085-9aee-0cf4887d328f/LUNA.glb?v=1653087819401"></a-asset-item -->
</a-assets>
<a-camera position="0 0 0" look-controls="enabled: false" cursor="fuse: false; rayOrigin: mouse;"
raycaster="far: 10000; objects: .clickable"></a-camera>
<a-entity id="mytarget" mytarget mindar-image-target="targetIndex: 0">
<a-plane src="#card" position="0 0 0" height="0.552" width="1" rotation="0 0 0"></a-plane>
<a-entity visible=false id="portfolio-panel" position="0 0 -0.01">
<a-entity id="portfolio-item0">
<a-video id="paintandquest-video-link" webkit-playsinline playsinline width="1" height="0.552"
position="0 0 0"></a-video>
<a-image id="paintandquest-preview-button" class="clickable" src="#paintandquest-preview" alpha-test="0.5"
position="0 0 0" height="0.552" width="1">
</a-image>
</a-entity>
<a-entity id="portfolio-item1" visible=false>
<a-image class="clickable" src="#coffeemachine-preview" alpha-test="0.5" position="0 0 0" height="0.552"
width="1">
</a-image>
</a-entity>
<a-entity id="portfolio-item2" visible=false>
<a-image class="clickable" src="#peak-preview" alpha-test="0.5" position="0 0 0" height="0.552" width="1">
</a-image>
</a-entity>
<a-image visible=false id="portfolio-left-button" class="clickable" src="#icon-left" position="-0.7 0 0"
height="0.15" width="0.15"></a-image>
<a-image visible=false id="portfolio-right-button" class="clickable" src="#icon-right" position="0.7 0 0"
height="0.15" width="0.15"></a-image>
</a-entity>
<a-image visible=false id="micro-button" class="clickable" src="#icon-micro" position="-0.62 -0.5 0"
height="0.15" width="0.15"
animation="property: scale; to: 1.2 1.2 1.2; dur: 1000; easing: easeInOutQuad; loop: true; dir: alternate">
</a-image>
<!-- <a-image visible=false id="idea-button" class="clickable" src="#icon-idea" alpha-test="0.5"
position="0.0 -0.5 0" height="0.15" width="0.15"
animation="property: scale; to: 1.2 1.2 1.2; dur: 1000; easing: easeInOutQuad; loop: true; dir: alternate">
</a-image>
-->
<a-gltf-model id="avatar" rotation="0 180 0" position="0 -0.25 0" scale="0.1 0.1 0.1" src="#Modelo3D"
animation-mixer>
</a-gltf-model>
<a-text id="text" class="clickable"
value="Da clic sobre alguno de los botones para realizar una acción" color="white"
align="center" width="1" position="0 -1.001 0" geometry="primitive:plane; height: 0.5; width: 1.4;"
material="color: black; opacity: 0.5"></a-text>
</a-entity>
</a-scene>
</div>
<div id="galeriaContainer"></div>
</body>
<script>
window.contador = 0;
window.contadorcubogrande = 0;
var SpeechRecognition = SpeechRecognition || webkitSpeechRecognition
var SpeechGrammarList = SpeechGrammarList || webkitSpeechGrammarList
var SpeechRecognitionEvent = SpeechRecognitionEvent || webkitSpeechRecognitionEvent
var arreglovoz = ['Hola ',
'dime sabores',
'claro',
'quiero vainilla',
'Tamaños',
'tamaño mediano',
'correcto',
//'carreras',
// 'Galeria',
//'saluda',
'Saluda',
'SALUDA',
'primera foto',
'imagenes de carreras',
'ubicacion',
'Muéstrame a Iron Cat más grande',
'Muéstrame Iron Cat más grande',
'yakuin muéstrame a IronCat más pequeño',
'yakuin Muéstrame ironcat más pequeño',
'yakuin Muéstrame a Iron Cat más pequeño',
'yakuin Muéstrame Iron Cat más pequeño',
'yakuin Haz que Iron Cat desaparezca',
'yakuin Haz que ironcat desaparezca',
'yakuin regresa al escenario',
'yakuin regresa a la escena',
'yakuin vuelve',
'yakuin muéstrame la luna',
'yakuin Muéstrame la luna',
];
var grammar = '#JSGF V1.0; grammar arreglovoz; public <arreglovoz> = ' + arreglovoz.join(' | ') + ' ;'
var recognition = new SpeechRecognition();
var speechRecognitionList = new SpeechGrammarList();
speechRecognitionList.addFromString(grammar, 1);
recognition.grammars = speechRecognitionList;
recognition.continuous = false;
recognition.lang = 'es-MX';
recognition.interimResults = false;
recognition.maxAlternatives = 1;
var diagnostic = document.querySelector('#text');
var vozHTML = '';
arreglovoz.forEach(function (v, i, a) {
console.log(v, i);
});
window.onload = function () {
function micro() {
recognition.start();
console.log('Estoy listo para escuchar.');
}
document.getElementById('micro-button').onclick = micro;
}
recognition.onresult = function (event) {
var voz = event.results[0][0].transcript;
diagnostic.setAttribute("value", "Dijiste: " + voz + ".");
bg = voz;
var bg = document.querySelector('text');
//VISUALIZO EN CONSOLA
console.log(bg);
console.log(voz);
function randD(array) {
var rand = Math.random() * array.length | 0;
var result = array[rand];
return result;
}
// Interacciones iniciales
if (voz === 'Hola') {
console.log("Hola, estas saludando!");
let utterance = new SpeechSynthesisUtterance('Hola amigo mi nombre es Bocado ¿en Que te puedo ayudar?..')
utterance.lang = 'es-MX'
speechSynthesis.speak(utterance)
}
// if (voz === 'no ') {
// console.log("Estas dando las gracias");
//let utterance = new SpeechSynthesisUtterance('no')
//utterance.lang = 'es-MX'
//speechSynthesis.speak(utterance)
//}
// if (voz === 'no') {
// console.log("Hola, estas saludando!");
// let utterance = new SpeechSynthesisUtterance('de nada mi buen , nos vemos en residencia.')
//utterance.lang = 'es-MX'
//speechSynthesis.speak(utterance)
//}
// if (voz === 'puedes presentarte') {
// console.log("yakuin se esta presentando!");
//let utterance = new SpeechSynthesisUtterance('¡Hola! Soy Yakuin, un armadillo endémico de la región Mixteca, en Oaxaca, México. Me enorgullece ser la mascota del Tecnológico de Tlaxiaco, ya que represento los valores fundamentales de esta institución.')
//utterance.lang = 'es-MX'
//speechSynthesis.speak(utterance)
// }
// if (voz === 'dime tus caracteristicas') {
// console.log("Hola, estas pregutando!");
//var datos = [' Me verás como un armadillo de color azul, con detalles en blanco y naranja. Llevo con orgullo un escudo con el logotipo del Tecnológico en mi pecho y una gorra de graduación en mi cabeza, porque me encanta representar el espíritu académico y el compromiso con el éxito educativo',
//];
//var result = randD(datos);
//let utterance = new SpeechSynthesisUtterance(result);
//utterance.lang = 'es-MX'
//speechSynthesis.speak(utterance)
//}
//if (voz === ' ¿que eres?' || voz === 'Qué eres') {
//console.log("Hola, estas preguntando!");
//let utterance = new SpeechSynthesisUtterance('Yakuin es más que una simple mascota, es un símbolo de identidad y orgullo para la comunidad del Tecnológico de Tlaxiaco')
// utterance.lang = 'es-MX'
//speechSynthesis.speak(utterance)
// }
//interaccion con RA
//Funciona bien
if (voz === 'dime sabores') {
console.log("Estás solicitando información sobre la paleteria.");
let utterance = new SpeechSynthesisUtterance('¿quieres saber los sabores de los helados?');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
//Funciona bien
if (voz === 'claro') {
console.log("Estás solicitando información sobre la paleteria.");
let utterance = new SpeechSynthesisUtterance('los sabores son vainilla, chocolate, fresa, menta, galleta, oreo.');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
//Funciona bien
if (voz === 'quiero vainilla') {
console.log("Estás solicitando información sobre la paleteria.");
let utterance = new SpeechSynthesisUtterance('sabias que ¡ La mayor parte de la vainillla para hacer helados procede de madagascar, indonesia. ¡gran eleccion¡.');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
//Funciona bien
if (voz === 'tamaños') {
console.log("Estás solicitando información sobre la paleteria..");
let utterance = new SpeechSynthesisUtterance('tengo el tamaño grande con precio de 35 pesos, el tamaño mediano con el precio de 25 pesos, y el tamaño chico con el precio de 15 pesos.');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
if (voz === 'tamaño mediano') {
console.log("Estás solicitando información sobre la paleteria.");
let utterance = new SpeechSynthesisUtterance('de acuerdo, tu pedido es un vaso mediano de sabor vainilla con un costo de 25 pesos.');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
if (voz === 'correcto') {
console.log("Estás solicitando información sobre la paleteria.");
let utterance = new SpeechSynthesisUtterance('gracias por realizar tu compra con Bocado, vuelve pronto, adios.');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
//Funciona bien
if (voz === 'puto') {
console.log("Estás solicitando información sobre la paleteria.");
let utterance = new SpeechSynthesisUtterance('por eso esperaba con la carita empapada que llegaras con rosas con mil rosas para mi.');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
if (voz === 'canta') {
console.log("Estás solicitando información sobre la paleteria.");
let utterance = new SpeechSynthesisUtterance('por eso esperaba con la carita empapada, que llegaras con rosas, con mil rosas para mi , por que ya sabes que me encantan esas cosas no me importa si es muy tonto soy asi.');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
//Funciona bien
if (voz === 'opciones') {
console.log("Estás solicitando una galería de fotos.");
// Array de URLs de imágenes para la galería
var imagenesGaleria = [
'https://cdn.glitch.global/1233ce11-8317-49bb-b650-f7bc7b19dbff/vainilla.png?v=1717168658207s',
'https://cdn.glitch.global/1233ce11-8317-49bb-b650-f7bc7b19dbff/chocolate.png?v=1717168828471s',
'https://cdn.glitch.global/1233ce11-8317-49bb-b650-f7bc7b19dbff/oreo.png?v=1717168946708',
'https://cdn.glitch.global/1233ce11-8317-49bb-b650-f7bc7b19dbff/pistache.png?v=1717169134772',
'https://cdn.glitch.global/1233ce11-8317-49bb-b650-f7bc7b19dbff/nanche.png?v=1717169206420',
'https://cdn.glitch.global/1233ce11-8317-49bb-b650-f7bc7b19dbff/agua%20de%20orchata.png?v=1717169297123',
];
// Generar el HTML para la galería de fotos
var galeriaHTML = '<div class="galeria-fotos">';
imagenesGaleria.forEach(function (url) {
galeriaHTML += '<img class="imagen-galeria-foto" src="' + url + '" alt="Foto de la galería">';
});
galeriaHTML += '</div>';
// Obtener el elemento donde se mostrará la galería de fotos y establecer el HTML generado
var galeriaContainer = document.querySelector("#galeriaContainer");
galeriaContainer.innerHTML = galeriaHTML;
// Mensaje de voz para confirmar la visualización de la galería
let utterance = new SpeechSynthesisUtterance('¡Claro que sí! tengo sabores de helado de Vainilla, chocolate, oreo, pistache , nanche , y aguas frescas sabor orchata');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
if (voz === 'ubicación') {
console.log("Estás solicitando mostrar una ubicación.");
// HTML para la ubicación en Google Maps dentro de un iframe
var mapHTML = `
<div id="mapContainer" class="map-container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1925.986412450529!2d-97.69174869999999!3d17.249977799999993!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xabdf1f0ebfc924cf!2sTecNM%20Instituto%20Tecnol%C3%B3gico%20de%20Tlaxiaco!5e0!3m2!1ses!2smx!4v1635356325046!5m2!1ses!2smx"
allowfullscreen>
</iframe>
</div>
`;
// Obtener el elemento donde se mostrará el mapa y establecer el HTML generado
var body = document.querySelector("body");
var mapContainer = document.createElement("div");
mapContainer.innerHTML = mapHTML;
body.appendChild(mapContainer);
// Mensaje de voz para confirmar la visualización de la ubicación
let utterance = new SpeechSynthesisUtterance('Esta es la ubicacion del tecnologico de Tlaxiaco.');
utterance.lang = 'es-MX';
speechSynthesis.speak(utterance);
}
if (voz === 'yakuin muéstrame a IronCat' || voz === 'yakuin Muéstrame a Iron Cat' || voz === 'yakuin Muéstrame a Iron Man' || voz === 'Muéstrame a Iron Cat' || voz === 'Muéstrame Iron Cat') {
console.log("Estas queriendo visualizar el modelo ironcat");
if (contador == 0) {
var el = document.querySelector('#avatar');
el.setAttribute("src", "Assets/iron.glb");
let utterance = new SpeechSynthesisUtterance('Ironcat es un modelo basado en el personaje de ciencia ficcion IRONMAN de Marvel, esta fue renderizada por alumnos del instituo tecnologico de tlaxiaco tomando como referencia la imagen compartida por Cameron McEfee en el octodex, la verdadera identidad de Ironcat sigue siendo un misterio. Tienes idea de quien es?')
utterance.lang = 'es-MX'
speechSynthesis.speak(utterance)
}
if (contador == 1) {
var el = document.querySelector('#avatar');
el.setAttribute("src", "Assets/iron.glb");
let utterance = new SpeechSynthesisUtterance('Nuevamente se hace presente Ironcat. Dicen que es un famoso y multimillonario personaje que ayuda a compartir proyectos y/o repositorios para elaborar trabajos colaborativos. Aun no sabes quien es?. Por cierto su cabeza se parece a la de un gato justiciero. No, no es BATMAN')
utterance.lang = 'es-MX'
speechSynthesis.speak(utterance)
contador = 0;
}
contador++;
console.log(contador);
}
if (voz === 'yakuin muéstrame a ironcat más grande' || voz === 'yakuin Muéstrame a Iron Cat más grande' || voz === 'Muéstrame a Iron Cat más grande' || voz === 'yakuin Muéstrame Iron Cat más grande' || voz === 'Muéstrame Iron Cat más grande') {
console.log("Estas queriendo hacer a ironcat mas grande");
if (contadorcubogrande == 0) {
var el = document.querySelector('#avatar');
el.setAttribute("src", "Assets/iron.glb");
el.setAttribute("scale", '1 1 1');
let utterance = new SpeechSynthesisUtterance('Ahora Ironcat es más grande pero no me pidas hacerlo de nuevo por que es imposible. ok?')
utterance.lang = 'es-MX'
speechSynthesis.speak(utterance)
}
if (contadorcubogrande == 1) {
let utterance = new SpeechSynthesisUtterance('Amigo, Ironcat no es como ANT-MAN hacerlo más grande hará que explote su traje, además este no podrá volar. ¿Quieres ser el causante de que Ironcat no vuele?')
utterance.lang = 'es-MX'
speechSynthesis.speak(utterance)
contadorcubogrande = 0;
}
contadorcubogrande++;
}
if (voz === 'yakuin muéstrame a IronCat más pequeño' || voz === 'yakuin Muéstrame ironcat más pequeño' || voz === 'yakuin Muéstrame a IronCat más pequeño' || voz === 'yakuin Muéstrame Iron Cat más pequeño') {
console.log("Estas queriendo a ironcat mas pequeño");
var el = document.querySelector('#avatar');
el.setAttribute("src", "Assets/iron.glb");
el.setAttribute("scale", '0.1 0.1 0.1');
let utterance = new SpeechSynthesisUtterance('Reduciendo a Ironcat. Ahora Ironcat a vuelto a su tamaño normal para volver a combatir el mal.')
utterance.lang = 'es-MX'
speechSynthesis.speak(utterance)
}
if (voz === 'yakuin Haz que ironcat desaparezca' || voz === 'yakuin Haz que Iron Cat desaparezca') {
console.log("Estas queriendo a ironcat transparente");
var el = document.querySelector('#avatar');
el.setAttribute("visible", 'false');
let utterance = new SpeechSynthesisUtterance('Ironcat a desaparecido, a utilizado nanotecnologia y muchas librerias que ha econtrado en GitHub.')
utterance.lang = 'es-MX'
speechSynthesis.speak(utterance)
}
if (voz === 'yakuin regresa al escenario' || voz === 'yakuin regresa a la escena') {
console.log("Estas queriendo regresar a yakuin");
var el = document.querySelector('#avatar');
el.setAttribute("src", 'https://cdn.glitch.global/16b440ad-e892-4085-9aee-0cf4887d328f/yakuingit.glb?v=1648149096491');
el.setAttribute("scale", '0.1 0.1 0.1');
el.setAttribute("position", '0 -0.25 0');
el.setAttribute("rotation", '0 0 0');
el.setAttribute("visible", 'true');
let utterance = new SpeechSynthesisUtterance('Enseguida amigo. aunque ya me estoy cansando de esto.')
utterance.lang = 'es-MX'
speechSynthesis.speak(utterance)
}
console.log('Confidence: ' + event.results[0][0].confidence);
}
recognition.onspeechend = function () {
recognition.stop();
}
recognition.onnomatch = function (event) {
diagnostic.setAttribute("value", "No puedo escucharte claramente, por favor repiteme.");
}
recognition.onerror = function (event) {
diagnostic.setAttribute("value", 'Ocurrio un error al escucharte: ' + event.error);
}
</script>
</html>