| |
| sistema:discos:descargas:pcw16en [2026/05/05 18:14] – creado jesus | sistema:discos:descargas:pcw16en [2026/05/06 09:21] (actual) – jesus |
|---|
| .flipped { transform:rotateY(180deg); } | .flipped { transform:rotateY(180deg); } |
| |
| /* VENTANA Y FLUJO */ | |
| .disk-window { position:absolute; top:12px; left:50%; margin-left:-13px; width:26px; height:52px; background:#1a130e; border-radius:1px; z-index:1; overflow:hidden; border:1px solid #222; } | .disk-window { position:absolute; top:12px; left:50%; margin-left:-13px; width:26px; height:52px; background:#1a130e; border-radius:1px; z-index:1; overflow:hidden; border:1px solid #222; } |
| .mylar-flow { width:300%; height:100%; background: repeating-linear-gradient(90deg, #3d2b1f 0px, #4a3528 4px, #3d2b1f 8px, #5c4033 10px, #3d2b1f 20px); position:absolute; top:0; left:0; display: none; } | .mylar-flow { width:300%; height:100%; background: repeating-linear-gradient(90deg, #3d2b1f 0px, #4a3528 4px, #3d2b1f 8px, #5c4033 10px, #3d2b1f 20px); position:absolute; top:0; left:0; display: none; } |
| .sh-o .back .shutter-box { transform: translateX(33px); } | .sh-o .back .shutter-box { transform: translateX(33px); } |
| |
| /* ETIQUETA */ | /* ETIQUETA PcW 16 */ |
| .label { position:absolute; top:84px; left:8px; right:8px; bottom:8px; background:#fff; border-radius:2px; display:flex; flex-direction:row; z-index:20; border:1px solid #ccc; overflow:hidden; cursor: pointer !important; } | .label { position:absolute; top:84px; left:8px; right:8px; bottom:8px; background:#fff; border-radius:2px; display:flex; flex-direction:row; z-index:20; border:1px solid #ccc; overflow:hidden; cursor: pointer !important; } |
| .l-left { width: 44px; min-width: 44px; display: flex; flex-direction: column; align-items: center; background:#fff; height: 100%; border-right: 1.5px solid #4a4099; } | .l-left { width: 44px; min-width: 44px; display: flex; flex-direction: column; align-items: center; background:#fff; height: 100%; border-right: 1.5px solid #4a4099; } |
| |
| <div class="term"> | <div class="term"> |
| <div class="title">SISTEMA AMSTRAD PCW 16 ANNE</div> | <div class="title">SISTEMA AMSTRAD PCW 16 ANNE (EN)</div> |
| <div id="unit" class="bay-35"> | <div id="unit" class="bay-35"> |
| <div class="slot-tunnel"><div id="flap" class="flap-door"></div></div> | <div class="slot-tunnel"><div id="flap" class="flap-door"></div></div> |
| <div class="notch-grip"></div> | <div class="notch-grip"></div> |
| <div class="led-housing"><div id="led" class="led-35"></div></div> | <div class="led-housing"><div id="led" class="led-35"></div></div> |
| <div class="ej-bt-35" title="VOLVER" onclick="window.location.href='doku.php?id=de:software:system'"></div> | <!-- BOTÓN EJECT CORREGIDO A software:sistema --> |
| | <div class="ej-bt-35" title="VOLVER" onclick="window.location.href='/doku.php?id=software:sistema'"></div> |
| </div> | </div> |
| <div id="scr"> | <div id="scr"> |
| |
| function pStp(){ | function pStp(){ |
| iA(); var n=aCtx.currentTime, o=aCtx.createOscillator(), g=aCtx.createGain(), f=aCtx.createBiquadFilter(), noise=aCtx.createOscillator(); | iA(); var n=aCtx.currentTime, o=aCtx.createOscillator(), g=aCtx.createGain(), f=aCtx.createBiquadFilter(); |
| // Impacto mecánico (Triangular para el golpe seco) | |
| o.type='triangle'; o.frequency.setValueAtTime(120, n); | o.type='triangle'; o.frequency.setValueAtTime(120, n); |
| f.type='bandpass'; f.frequency.value=1200; f.Q.value=10; | f.type='bandpass'; f.frequency.value=1200; f.Q.value=10; |
| g.gain.setValueAtTime(0.9, n); // VOLUMEN POTENTE | g.gain.setValueAtTime(0.9, n); |
| g.gain.exponentialRampToValueAtTime(0.001, n+0.06); | g.gain.exponentialRampToValueAtTime(0.001, n+0.06); |
| o.connect(f); f.connect(g); g.connect(aCtx.destination); | o.connect(f); f.connect(g); g.connect(aCtx.destination); |
| function sMot(){ | function sMot(){ |
| iA(); mNode=aCtx.createOscillator(); var g=aCtx.createGain(), f=aCtx.createBiquadFilter(); | iA(); mNode=aCtx.createOscillator(); var g=aCtx.createGain(), f=aCtx.createBiquadFilter(); |
| // Murmullo de correa (Baja frecuencia, sensación de goma) | |
| mNode.type='sine'; mNode.frequency.value=32; | mNode.type='sine'; mNode.frequency.value=32; |
| f.type='lowpass'; f.frequency.value=150; | f.type='lowpass'; f.frequency.value=150; |
| g.gain.value=0.006; // Sonido de fondo sutil | g.gain.value=0.006; |
| mNode.connect(f); f.connect(g); g.connect(aCtx.destination); | mNode.connect(f); f.connect(g); g.connect(aCtx.destination); |
| mNode.start(); | mNode.start(); |