| Próxima revisión | Revisión previa |
| hardware:perifericos [2026/05/13 17:00] – creado jesus | hardware:perifericos [2026/05/25 17:33] (actual) – jesus |
|---|
| ~~NOTOC~~ | ~~NOTOC~~ |
| ====== Listado alfabético de periféricos ====== | |
| |
| <html> | <html> |
| <style> | <style> |
| /* --- MOTOR VISUAL RETRO CRT --- */ | /* --- MOTOR VISUAL RETRO CRT --- */ |
| .pcw-monitor-ultra { | .pcw-monitor-ultra { background-color: #000b00; border: 12px solid #2a2a2a; border-radius: 15px; padding: 25px; margin: 25px 0; font-family: 'Courier New', Courier, monospace; position: relative; overflow: hidden; box-shadow: inset 0 0 60px rgba(0,255,0,0.15), 0 10px 30px rgba(0,0,0,0.7); } |
| background-color: #000b00; | .pcw-monitor-ultra::after { content: " "; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03)); background-size: 100% 3px, 2px 100%; z-index: 2; pointer-events: none; animation: flickering 0.15s infinite; } |
| border: 12px solid #2a2a2a; | |
| border-radius: 15px; | |
| padding: 25px; | |
| margin: 25px 0; | |
| font-family: 'Courier New', Courier, monospace; | |
| position: relative; | |
| overflow: hidden; | |
| box-shadow: inset 0 0 60px rgba(0,255,0,0.15), 0 10px 30px rgba(0,0,0,0.7); | |
| } | |
| | |
| /* Capa de scanlines y parpadeo */ | |
| .pcw-monitor-ultra::after { | |
| content: " "; | |
| position: absolute; | |
| top: 0; left: 0; bottom: 0; right: 0; | |
| background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), | |
| linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03)); | |
| background-size: 100% 3px, 2px 100%; | |
| z-index: 2; | |
| pointer-events: none; | |
| animation: flickering 0.15s infinite; | |
| } | |
| @keyframes flickering { 0% { opacity: 0.98; } 100% { opacity: 1; } } | @keyframes flickering { 0% { opacity: 0.98; } 100% { opacity: 1; } } |
| | .retro-text { color: #00ff00 !important; font-family: 'Courier New', Courier, monospace; text-shadow: 0 0 10px rgba(0, 255, 0, 0.7), 0 0 2px rgba(0, 255, 0, 0.8); text-transform: uppercase; letter-spacing: 1px; text-decoration: none !important; } |
| /* Estilo de Texto Retro (Glow Verde) */ | .pcw-title-ultra { font-size: 1.6em; font-weight: bold; margin-bottom: 25px; display: block; } |
| .retro-text { | .pcw-title-ultra::after { content: "_"; animation: cursor-blink 1s infinite; } |
| color: #00ff00 !important; | |
| font-family: 'Courier New', Courier, monospace; | |
| text-shadow: 0 0 10px rgba(0, 255, 0, 0.7), 0 0 2px rgba(0, 255, 0, 0.8); | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| text-decoration: none !important; | |
| } | |
| | |
| .pcw-title-ultra { | |
| font-size: 1.6em; | |
| font-weight: bold; | |
| margin-bottom: 25px; | |
| display: block; | |
| } | |
| | |
| .pcw-title-ultra::after { | |
| content: "_"; | |
| animation: cursor-blink 1s infinite; | |
| } | |
| @keyframes cursor-blink { 0%, 100% { opacity: 0; } 50% { opacity: 1; } } | @keyframes cursor-blink { 0%, 100% { opacity: 0; } 50% { opacity: 1; } } |
| | .pcw-grid-vertical { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 3; } |
| /* Contenedor vertical */ | .pcw-row-ultra { display: flex; align-items: center; justify-content: flex-start; background: transparent; padding: 8px 5px; border: 1px solid transparent; font-weight: bold; font-size: 1em; transition: 0.2s; } |
| .pcw-grid-vertical { | .pcw-row-ultra:hover { background-color: rgba(0, 255, 0, 0.15); border: 1px solid rgba(0, 255, 0, 0.5); transform: translateX(12px); } |
| display: flex; | .pcw-row-ultra::before { content: "> "; color: #00ff00; opacity: 0.4; margin-right: 10px; } |
| flex-direction: column; | .pcw-row-ultra:hover::before { opacity: 1; } |
| gap: 12px; | .pcw-section-letter { background-color: #00ff00; color: #000b00 !important; padding: 3px 10px; font-weight: bold; display: inline-block; margin: 15px 0 5px 0; font-family: 'Courier New', Courier, monospace; } |
| position: relative; | .pcw-link-main a { color: #00ff00 !important; text-shadow: 0 0 8px rgba(0, 255, 0, 0.6); text-decoration: underline !important; } |
| z-index: 3; | .pcw-link-sub a { color: #ffb000 !important; text-shadow: 0 0 8px rgba(255, 176, 0, 0.6); text-decoration: none !important; margin-left: 8px; } |
| } | .pcw-link-sub a:hover { text-decoration: underline !important; } |
| | |
| /* Fila que emula el botón pero permite múltiples enlaces reales dentro */ | |
| .pcw-row-ultra { | |
| display: flex; | |
| align-items: center; | |
| justify-content: flex-start; | |
| background: transparent; | |
| padding: 8px 5px; | |
| border: 1px solid transparent; | |
| font-weight: bold; | |
| font-size: 1em; | |
| transition: 0.2s; | |
| } | |
| | |
| .pcw-row-ultra:hover { | |
| background-color: rgba(0, 255, 0, 0.15); | |
| border: 1px solid rgba(0, 255, 0, 0.5); | |
| transform: translateX(12px); | |
| } | |
| | |
| .pcw-row-ultra::before { | |
| content: "> "; | |
| color: #00ff00; | |
| opacity: 0.4; | |
| margin-right: 10px; | |
| } | |
| | |
| .pcw-row-ultra:hover::before { | |
| opacity: 1; | |
| } | |
| | |
| /* Subtítulos de sección para separar por letras */ | |
| .pcw-section-letter { | |
| background-color: #00ff00; | |
| color: #000b00 !important; | |
| padding: 3px 10px; | |
| font-weight: bold; | |
| display: inline-block; | |
| margin: 15px 0 5px 0; | |
| font-family: 'Courier New', Courier, monospace; | |
| } | |
| | |
| /* --- NUEVOS COLORES PARA ENLACES DENTRO DE LOS CORCHETES --- */ | |
| /* Enlaces a periféricos/desarrollos principales (Color Verde Fósforo) */ | |
| .pcw-link-main a { | |
| color: #00ff00 !important; | |
| text-shadow: 0 0 8px rgba(0, 255, 0, 0.6); | |
| text-decoration: underline !important; | |
| } | |
| | |
| /* Enlaces a compañías/creadores secundarios (Color Ámbar / Oro Viejo Retro) */ | |
| .pcw-link-sub a { | |
| color: #ffb000 !important; | |
| text-shadow: 0 0 8px rgba(255, 176, 0, 0.6); | |
| text-decoration: none !important; | |
| margin-left: 8px; | |
| } | |
| .pcw-link-sub a:hover { | |
| text-decoration: underline !important; | |
| } | |
| </style> | </style> |
| |
| <div class="pcw-monitor-ultra"> | <div class="pcw-monitor-ultra"> |
| <div class="pcw-title-ultra retro-text"> A> PERIFÉRICOS </div> | <div class="pcw-title-ultra retro-text"> A> Listado alfabético de periféricos </div> |
| <div class="pcw-grid-vertical"> | <div class="pcw-grid-vertical"> |
| |
| <!-- SECCIÓN A --> | |
| <div class="pcw-section-letter">A</div> | <div class="pcw-section-letter">A</div> |
| <div class="pcw-row-ultra"> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:AMX Mouse|AMX Mouse]]<html></span><span class="pcw-link-sub"></html>([[..companias:advancedmemorysystems|Advanced Memory Systems]])<html></span></div> |
| <span class="pcw-link-main"></html>[[.perifericos:AMX Mouse|AMX Mouse]]<html></span> | |
| <span class="pcw-link-sub"></html>([[..companias:advancedmemorysystems|Advanced Memory Systems]])<html></span> | |
| </div> | |
| | |
| <!-- SECCIÓN C --> | |
| <div class="pcw-section-letter">C</div> | <div class="pcw-section-letter">C</div> |
| <div class="pcw-row-ultra"> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Cadmaster|Cadmaster]]<html></span><span class="pcw-link-sub"></html>([[..companias:trojanproducts|Trojan Products]])<html></span></div> |
| <span class="pcw-link-main"></html>[[.perifericos:Cadmaster|Cadmaster]]<html></span> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Cascade Joystick|Cascade Joystick]]<html></span><span class="pcw-link-sub"></html>([[..companias:cascade|Cascade]])<html></span></div> |
| <span class="pcw-link-sub"></html>([[..companias:trojanproducts|Trojan Products]])<html></span> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:CPS8256 (Interfaz paralelo centronics y serie RS232C)|CPS8256 (Interfaz paralelo centronics y serie RS232C)]]<html></span><span class="pcw-link-sub"></html>([[..companias:Amstrad|Amstrad]])<html></span></div> |
| </div> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:CT Scanner|CT Scanner]]<html></span><span class="pcw-link-sub"></html>([[..companias:cirtech|Cirtech]])<html></span></div> |
| <div class="pcw-row-ultra"> | |
| <span class="pcw-link-main"></html>[[.perifericos:Cascade Joystick|Cascade Joystick]]<html></span> | |
| <span class="pcw-link-sub"></html>([[..companias:cascade|Cascade]])<html></span> | |
| </div> | |
| <div class="pcw-row-ultra"> | |
| <span class="pcw-link-main"></html>[[.perifericos:CPS8256 (Interfaz paralelo centronics y serie RS232C)|CPS8256 (Interfaz paralelo centronics y serie RS232C)]]<html></span> | |
| <span class="pcw-link-sub"></html>([[..companias:Amstrad|Amstrad]])<html></span> | |
| </div> | |
| <div class="pcw-row-ultra"> | |
| <span class="pcw-link-main"></html>[[.perifericos:CT Scanner|CT Scanner]]<html></span> | |
| <span class="pcw-link-sub"></html>([[..companias:cirtech|Cirtech]])<html></span> | |
| </div> | |
| | |
| <!-- SECCIÓN D --> | |
| <div class="pcw-section-letter">D</div> | <div class="pcw-section-letter">D</div> |
| <div class="pcw-row-ultra"> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:DKSound2|DK Sound and Joystick]]<html></span><span class="pcw-link-sub"></html>([[..companias:dktronics|DK'tronics]])<html></span></div> |
| <span class="pcw-link-main"></html>[[.perifericos:DKSound2|DK Sound and Joystick]]<html></span> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Datatwin8|Datatwin 8]]<html></span><span class="pcw-link-sub"></html>([[..companias:pinboardcomputers|Pinboard Computers]]<html></span></div> |
| <span class="pcw-link-sub"></html>([[..companias:dktronics|DK'tronics]])<html></span> | |
| </div> | |
| <div class="pcw-row-ultra"> | |
| <span class="pcw-link-main"></html>[[.perifericos:Datatwin8|Datatwin 8]]<html></span> | |
| <span class="pcw-link-sub"></html>([[..companias:pinboardcomputers|Pinboard Computers]])<html></span> | |
| </div> | |
| | |
| <!-- SECCIÓN F --> | |
| <div class="pcw-section-letter">F</div> | <div class="pcw-section-letter">F</div> |
| <div class="pcw-row-ultra"> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:FlashDisk|Flash Disk]]<html></span><span class="pcw-link-sub"></html>([[..companias:cirtech|Cirtech]])<html></span></div> |
| <span class="pcw-link-main"></html>[[.perifericos:FlashDisk|Flash Disk]]<html></span> | |
| <span class="pcw-link-sub"></html>([[..companias:cirtech|Cirtech]])<html></span> | |
| </div> | |
| | |
| <!-- SECCIÓN G --> | |
| <div class="pcw-section-letter">G</div> | <div class="pcw-section-letter">G</div> |
| <div class="pcw-row-ultra"> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:GemDrive|Gem Drive]]<html></span><span class="pcw-link-sub"></html>([[..companias:cirtech|Cirtech]])<html></span></div> |
| <span class="pcw-link-main"></html>[[.perifericos:GemDrive|Gem Drive]]<html></span> | |
| <span class="pcw-link-sub"></html>([[..companias:cirtech|Cirtech]])<html></span> | |
| </div> | |
| | |
| <!-- SECCIÓN I --> | |
| <div class="pcw-section-letter">I</div> | <div class="pcw-section-letter">I</div> |
| <div class="pcw-row-ultra"> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Interface Serie RS232C - CPS8256|Interface Serie RS232C - CPS8256]]<html></span><span class="pcw-link-sub"></html>([[..companias:Amstrad|Amstrad]])<html></span></div> |
| <span class="pcw-link-main"></html>[[.perifericos:Interface Serie RS232C - CPS8256|Interface Serie RS232C - CPS8256]]<html></span> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Intergem Disk Drive Interface|Intergem Disk Drive Interface]]<html></span><span class="pcw-link-sub"></html>([[..companias:Dynamic Data Technology]])<html></span></div> |
| <span class="pcw-link-sub"></html>([[..companias:Amstrad|Amstrad]])<html></span> | |
| </div> | |
| <div class="pcw-row-ultra"> | |
| <span class="pcw-link-main"></html>[[.perifericos:Intergem Disk Drive Interface|Intergem Disk Drive Interface]]<html></span> | |
| <span class="pcw-link-sub"></html>([[..companias:Dynamic Data Technology]])<html></span> | |
| </div> | |
| | |
| <!-- SECCIÓN K --> | |
| <div class="pcw-section-letter">K</div> | <div class="pcw-section-letter">K</div> |
| <div class="pcw-row-ultra"> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:kempston_joystick|Kempston Joystick]]<html></span><span class="pcw-link-sub"></html>([[companias:kempston_data|Kempston Data]])<html></span></div> |
| <span class="pcw-link-main"></html>[[es:hardware:perifericos:kempston_joystick|Kempston Joystick (OR)]]<html></span> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Kempston Joystick (Clones)|Kempston Joystick (Clones)]]<html></span></div> |
| <span class="pcw-link-sub"></html>([[es:companias:kempston_data|Kempston Data]])<html></span> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Kempston Mouse|Kempston Mouse]]<html></span><span class="pcw-link-sub"></html>([[companias:kempston_data|Kempston Data]])<html></span></div> |
| </div> | |
| <div class="pcw-row-ultra"> | |
| <span class="pcw-link-main"></html>[[.perifericos:Kempston Joystick (Clones)|Kempston Joystick (Clones)]]<html></span> | |
| </div> | |
| <div class="pcw-row-ultra"> | |
| <span class="pcw-link-main"></html>[[.perifericos:Kempston Mouse|Kempston Mouse]]<html></span> | |
| <span class="pcw-link-sub"></html>([[es:companias:kempston_data|Kempston Data]])<html></span> | |
| </div> | |
| | |
| <!-- SECCIÓN L --> | |
| <div class="pcw-section-letter">L</div> | <div class="pcw-section-letter">L</div> |
| <div class="pcw-row-ultra"> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Light Pen|Light Pen]]<html></span><span class="pcw-link-sub"></html>([[..companias:The Electric Studio]])<html></span></div> |
| <span class="pcw-link-main"></html>[[.perifericos:Light Pen|Light Pen]]<html></span> | <div class="pcw-section-letter">M</div> |
| <span class="pcw-link-sub"></html>([[..companias:The Electric Studio]])<html></span> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Mark 2 Interface|Mark 2 Interface]]<html></span><span class="pcw-link-sub"></html>([[..companias:SCA Systems]])<html></span></div> |
| </div> | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[es:hardware:perifericos:master_pack|Master Pack]]<html></span><span class="pcw-link-sub"></html>([[..companias:Database Software]])<html></span></div> |
| | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[es:aplicaciones:master_scan|Master Scan]]<html></span><span class="pcw-link-sub"></html>([[..companias:Database Software]])<html></span></div> |
| | <div class="pcw-section-letter">P</div> |
| | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Parallel Printer Port|Parallel Printer Port]]<html></span><span class="pcw-link-sub"></html>([[..companias:Cirtech]])<html></span></div> |
| | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:PCW 8256 Test PCB|PCW 8256 Test PCB]]<html></span><span class="pcw-link-sub"></html>([[..companias:Amstrad]])<html></span></div> |
| | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:PCW 9512 Test PCB|PCW 9512 Test PCB]]<html></span><span class="pcw-link-sub"></html>([[..companias:Amstrad]])<html></span></div> |
| | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:PRO 8256|PRO 8256]]<html></span><span class="pcw-link-sub"></html>([[..companias:SCA Systems]])<html></span></div> |
| | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:Pro Scan|Pro Scan]]<html></span><span class="pcw-link-sub"></html>([[..companias:Creative_technology|Creative Tecnology]])<html></span></div> |
| | <div class="pcw-section-letter">R</div> |
| | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:rampac|Rampac]]<html></span><span class="pcw-link-sub"></html>([[..companias:SCA Systems]])<html></span></div> |
| | <div class="pcw-section-letter">S</div> |
| | <div class="pcw-row-ultra"><span class="pcw-link-main"></html>[[.perifericos:SpeedPrint|SpeedPrint]]<html></span><span class="pcw-link-sub"></html>([[..companias:Cirtech]])<html></span></div> |
| | </div> |
| | </div> |
| | </html> |
| |