Geotoad commited on
Commit
ea48cd1
·
verified ·
1 Parent(s): 6cb7882

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +25 -29
index.html CHANGED
@@ -4,7 +4,7 @@
4
  <head>
5
  <meta charset="UTF-8">
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
- <title>2013 Hyundai Genesis Coupe Interactive Diagram</title>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
  <style>
10
  :root {
@@ -124,7 +124,7 @@
124
  .car-image {
125
  width: 100%;
126
  height: 100%;
127
- background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjAwIDYwMCI+PHJlY3Qgd2lkdGg9IjEyMDAiIGhlaWdodD0iNjAwIiBmaWxsPSIjZjBmMGYwIi8+PHRleHQgeD0iNjAwIiB5PSI0MDAiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IiM2NmY2NjYiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZm9udC13ZWlnaHQ9ImJvbGQiPjEyOSBIeW5kdW5kYSBHZW5lc2lzIENvdXBlIDIwMTM8L3RleHQ+PC9zdmc+');
128
  background-size: contain;
129
  background-repeat: no-repeat;
130
  background-position: center;
@@ -133,31 +133,31 @@
133
  }
134
 
135
  .car-image.exterior {
136
- background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/genesis-coupe/2013/exterior/2013-genesis-coupe-exterior-01.jpg');
137
  }
138
 
139
  .car-image.engine {
140
- background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/genesis-coupe/2013/performance/2013-genesis-coupe-engine.jpg');
141
  }
142
 
143
  .car-image.transmission {
144
- background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/genesis-coupe/2013/performance/2013-genesis-coupe-transmission.jpg');
145
  }
146
 
147
  .car-image.suspension {
148
- background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/genesis-coupe/2013/performance/2013-genesis-coupe-suspension.jpg');
149
  }
150
 
151
  .car-image.brakes {
152
- background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/genesis-coupe/2013/performance/2013-genesis-coupe-brakes.jpg');
153
  }
154
 
155
  .car-image.electrical {
156
- background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/genesis-coupe/2013/interior/2013-genesis-coupe-electrical.jpg');
157
  }
158
 
159
  .car-image.interior {
160
- background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/genesis-coupe/2013/interior/2013-genesis-coupe-interior.jpg');
161
  }
162
 
163
  .label {
@@ -426,7 +426,7 @@
426
  <header class="header">
427
  <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link" target="_blank">Built with
428
  anycoder</a>
429
- <h1>2013 Hyundai Genesis Coupe</h1>
430
  <p>Interactive Component Diagram</p>
431
  </header>
432
 
@@ -486,7 +486,7 @@
486
  <div class="info-panel">
487
  <h3>System Overview</h3>
488
  <div class="system-description" id="systemDescription">
489
- <p>Select a system from the buttons above to view its components. The 2013 Hyundai Genesis Coupe features a
490
  sophisticated combination of mechanical and electrical systems working together to deliver performance and
491
  comfort.</p>
492
  </div>
@@ -502,11 +502,11 @@
502
  </div>
503
 
504
  <script>
505
- // Car component data organized by system
506
  const carComponents = {
507
  exterior: {
508
  name: "Exterior Components",
509
- description: "The exterior system includes all visible parts of the vehicle that contribute to its aerodynamics, styling, and protection.",
510
  components: [
511
  { name: "Front Bumper", position: { x: 30, y: 45 }, description: "Absorbs impact in front collisions and houses fog lights" },
512
  { name: "Hood", position: { x: 45, y: 25 }, description: "Protects the engine compartment and provides access for maintenance" },
@@ -528,17 +528,14 @@
528
  },
529
  engine: {
530
  name: "Engine System",
531
- description: "The engine system is the powerplant of the vehicle, converting fuel into mechanical energy to propel the car.",
532
  components: [
533
- { name: "3.8L V6 Engine", position: { x: 50, y: 35 }, description: "Lambda V6 engine producing 306 hp @ 6300 rpm" },
534
  { name: "Engine Block", position: { x: 50, y: 38 }, description: "Aluminum block with cast iron cylinder liners" },
535
- { name: "Cylinder Heads", position: { x: 50, y: 32 }, description: "Dual overhead camshaft (DOHC) design with 24 valves" },
536
  { name: "Intake Manifold", position: { x: 45, y: 30 }, description: "Distributes air to the cylinders" },
537
  { name: "Exhaust Manifold", position: { x: 55, y: 30 }, description: "Collects exhaust gases from the cylinders" },
538
- { name: "Turbocharger (2.0T)", position: { x: 50, y: 40 }, description: "Twin-scroll turbocharger for forced induction (2.0T model)" },
539
- { name: "Intercooler", position: { x: 40, y: 35 }, description: "Cools compressed air before entering the engine" },
540
- { name: "Throttle Body", position: { x: 48, y: 28 }, description: "Controls airflow into the engine" },
541
- { name: "Fuel Injectors", position: { x: 50, y: 34 }, description: "Delivers fuel directly into the combustion chambers" },
542
  { name: "Spark Plugs", position: { x: 50, y: 33 }, description: "Ignites the air-fuel mixture in each cylinder" },
543
  { name: "Oil Pan", position: { x: 50, y: 42 }, description: "Stores engine oil and houses the oil pump" },
544
  { name: "Oil Pump", position: { x: 50, y: 43 }, description: "Circulates oil throughout the engine" },
@@ -546,15 +543,16 @@
546
  { name: "Radiator", position: { x: 60, y: 30 }, description: "Cools engine coolant using airflow" },
547
  { name: "Engine Mounts", position: { x: 45, y: 45 }, description: "Secures engine to the chassis and absorbs vibrations" },
548
  { name: "Serpentine Belt", position: { x: 55, y: 40 }, description: "Drives engine accessories (alternator, power steering, etc.)" },
549
- { name: "Alternator", position: { x: 60, y: 40 }, description: "Generates electrical power and charges the battery" }
 
550
  ]
551
  },
552
  transmission: {
553
  name: "Transmission System",
554
- description: "The transmission system transfers power from the engine to the wheels, allowing for different gear ratios to optimize performance and efficiency.",
555
  components: [
556
  { name: "6-Speed Manual Transmission", position: { x: 55, y: 45 }, description: "Close-ratio gearbox for performance driving" },
557
- { name: "8-Speed Automatic Transmission", position: { x: 55, y: 45 }, description: "Electronically controlled with manual shift mode" },
558
  { name: "Clutch Assembly", position: { x: 53, y: 45 }, description: "Engages and disengages engine power to the transmission" },
559
  { name: "Flywheel", position: { x: 52, y: 45 }, description: "Smooths engine power delivery and provides clutch surface" },
560
  { name: "Transmission Case", position: { x: 55, y: 47 }, description: "Houses gears, shafts, and transmission fluid" },
@@ -566,14 +564,12 @@
566
  { name: "Axle Shafts", position: { x: 65, y: 60 }, description: "Transfers power from differential to wheels" },
567
  { name: "CV Joints", position: { x: 65, y: 62 }, description: "Allows power transfer at varying angles" },
568
  { name: "Transmission Mounts", position: { x: 55, y: 50 }, description: "Secures transmission to the chassis" },
569
- { name: "Transmission Fluid", position: { x: 55, y: 48 }, description: "Lubricates and cools transmission components" },
570
- { name: "Torque Converter (Auto)", position: { x: 54, y: 45 }, description: "Transfers power from engine to transmission fluid" },
571
- { name: "Valve Body (Auto)", position: { x: 55, y: 46 }, description: "Controls fluid flow for gear changes" }
572
  ]
573
  },
574
  suspension: {
575
  name: "Suspension System",
576
- description: "The suspension system provides ride comfort, handling stability, and maintains tire contact with the road surface.",
577
  components: [
578
  { name: "Front Struts", position: { x: 35, y: 55 }, description: "Combines shock absorber and spring in one unit" },
579
  { name: "Rear Shock Absorbers", position: { x: 70, y: 55 }, description: "Dampens suspension movement" },
@@ -594,7 +590,7 @@
594
  },
595
  brakes: {
596
  name: "Brake System",
597
- description: "The brake system provides stopping power and control, converting kinetic energy into heat through friction.",
598
  components: [
599
  { name: "Brake Pedal", position: { x: 20, y: 65 }, description: "Driver interface for brake activation" },
600
  { name: "Brake Booster", position: { x: 25, y: 55 }, description: "Amplifies brake pedal force" },
@@ -615,7 +611,7 @@
615
  },
616
  electrical: {
617
  name: "Electrical System",
618
- description: "The electrical system powers all electronic components, provides starting power, and manages vehicle systems through computer control.",
619
  components: [
620
  { name: "Battery", position: { x: 25, y: 45 }, description: "12-volt lead-acid battery providing electrical power" },
621
  { name: "Starter Motor", position: { x: 50, y: 48 }, description: "Engages flywheel to start the engine" },
 
4
  <head>
5
  <meta charset="UTF-8">
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>2013 Hyundai Elantra GS Coupe Interactive Diagram</title>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
  <style>
10
  :root {
 
124
  .car-image {
125
  width: 100%;
126
  height: 100%;
127
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjAwIDYwMCI+PHJlY3Qgd2lkdGg9IjEyMDAiIGhlaWdodD0iNjAwIiBmaWxsPSIjZjBmMGYwIi8+PHRleHQgeD0iNjAwIiB5PSI0MDAiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IiM2NmY2NjYiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZm9udC13ZWlnaHQ9ImJvbGQiPjEyOSBIeW5kdW5kYSBGbGFyZSAyMDEzIEVYIFNTIENvdXBlPC90ZXh0Pjwvc3ZnPg==');
128
  background-size: contain;
129
  background-repeat: no-repeat;
130
  background-position: center;
 
133
  }
134
 
135
  .car-image.exterior {
136
+ background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/elantra/2013/exterior/2013-elantra-exterior-01.jpg');
137
  }
138
 
139
  .car-image.engine {
140
+ background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/elantra/2013/performance/2013-elantra-engine.jpg');
141
  }
142
 
143
  .car-image.transmission {
144
+ background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/elantra/2013/performance/2013-elantra-transmission.jpg');
145
  }
146
 
147
  .car-image.suspension {
148
+ background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/elantra/2013/performance/2013-elantra-suspension.jpg');
149
  }
150
 
151
  .car-image.brakes {
152
+ background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/elantra/2013/performance/2013-elantra-brakes.jpg');
153
  }
154
 
155
  .car-image.electrical {
156
+ background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/elantra/2013/interior/2013-elantra-electrical.jpg');
157
  }
158
 
159
  .car-image.interior {
160
+ background-image: url('https://www.hyundaiusa.com/content/dam/hyundai/us/en/vehicles/elantra/2013/interior/2013-elantra-interior.jpg');
161
  }
162
 
163
  .label {
 
426
  <header class="header">
427
  <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link" target="_blank">Built with
428
  anycoder</a>
429
+ <h1>2013 Hyundai Elantra GS Coupe</h1>
430
  <p>Interactive Component Diagram</p>
431
  </header>
432
 
 
486
  <div class="info-panel">
487
  <h3>System Overview</h3>
488
  <div class="system-description" id="systemDescription">
489
+ <p>Select a system from the buttons above to view its components. The 2013 Hyundai Elantra GS Coupe features a
490
  sophisticated combination of mechanical and electrical systems working together to deliver performance and
491
  comfort.</p>
492
  </div>
 
502
  </div>
503
 
504
  <script>
505
+ // Car component data organized by system for 2013 Hyundai Elantra GS Coupe
506
  const carComponents = {
507
  exterior: {
508
  name: "Exterior Components",
509
+ description: "The exterior system includes all visible parts of the 2013 Hyundai Elantra GS Coupe that contribute to its aerodynamics, styling, and protection.",
510
  components: [
511
  { name: "Front Bumper", position: { x: 30, y: 45 }, description: "Absorbs impact in front collisions and houses fog lights" },
512
  { name: "Hood", position: { x: 45, y: 25 }, description: "Protects the engine compartment and provides access for maintenance" },
 
528
  },
529
  engine: {
530
  name: "Engine System",
531
+ description: "The engine system is the powerplant of the 2013 Hyundai Elantra GS Coupe, featuring a 1.8L Nu GDI engine producing 148 hp @ 6500 rpm.",
532
  components: [
533
+ { name: "1.8L Nu GDI Engine", position: { x: 50, y: 35 }, description: "1.8L inline-4 engine with Gasoline Direct Injection" },
534
  { name: "Engine Block", position: { x: 50, y: 38 }, description: "Aluminum block with cast iron cylinder liners" },
535
+ { name: "Cylinder Head", position: { x: 50, y: 32 }, description: "Dual overhead camshaft (DOHC) design with 16 valves" },
536
  { name: "Intake Manifold", position: { x: 45, y: 30 }, description: "Distributes air to the cylinders" },
537
  { name: "Exhaust Manifold", position: { x: 55, y: 30 }, description: "Collects exhaust gases from the cylinders" },
538
+ { name: "Fuel Injectors", position: { x: 50, y: 34 }, description: "Direct injection system for improved efficiency" },
 
 
 
539
  { name: "Spark Plugs", position: { x: 50, y: 33 }, description: "Ignites the air-fuel mixture in each cylinder" },
540
  { name: "Oil Pan", position: { x: 50, y: 42 }, description: "Stores engine oil and houses the oil pump" },
541
  { name: "Oil Pump", position: { x: 50, y: 43 }, description: "Circulates oil throughout the engine" },
 
543
  { name: "Radiator", position: { x: 60, y: 30 }, description: "Cools engine coolant using airflow" },
544
  { name: "Engine Mounts", position: { x: 45, y: 45 }, description: "Secures engine to the chassis and absorbs vibrations" },
545
  { name: "Serpentine Belt", position: { x: 55, y: 40 }, description: "Drives engine accessories (alternator, power steering, etc.)" },
546
+ { name: "Alternator", position: { x: 60, y: 40 }, description: "Generates electrical power and charges the battery" },
547
+ { name: "Timing Chain", position: { x: 50, y: 36 }, description: "Synchronizes camshaft and crankshaft rotation" }
548
  ]
549
  },
550
  transmission: {
551
  name: "Transmission System",
552
+ description: "The transmission system transfers power from the engine to the wheels, featuring either a 6-speed manual or 6-speed automatic transmission.",
553
  components: [
554
  { name: "6-Speed Manual Transmission", position: { x: 55, y: 45 }, description: "Close-ratio gearbox for performance driving" },
555
+ { name: "6-Speed Automatic Transmission", position: { x: 55, y: 45 }, description: "Electronically controlled with manual shift mode" },
556
  { name: "Clutch Assembly", position: { x: 53, y: 45 }, description: "Engages and disengages engine power to the transmission" },
557
  { name: "Flywheel", position: { x: 52, y: 45 }, description: "Smooths engine power delivery and provides clutch surface" },
558
  { name: "Transmission Case", position: { x: 55, y: 47 }, description: "Houses gears, shafts, and transmission fluid" },
 
564
  { name: "Axle Shafts", position: { x: 65, y: 60 }, description: "Transfers power from differential to wheels" },
565
  { name: "CV Joints", position: { x: 65, y: 62 }, description: "Allows power transfer at varying angles" },
566
  { name: "Transmission Mounts", position: { x: 55, y: 50 }, description: "Secures transmission to the chassis" },
567
+ { name: "Transmission Fluid", position: { x: 55, y: 48 }, description: "Lubricates and cools transmission components" }
 
 
568
  ]
569
  },
570
  suspension: {
571
  name: "Suspension System",
572
+ description: "The suspension system provides ride comfort and handling stability with a MacPherson strut front suspension and torsion beam rear suspension.",
573
  components: [
574
  { name: "Front Struts", position: { x: 35, y: 55 }, description: "Combines shock absorber and spring in one unit" },
575
  { name: "Rear Shock Absorbers", position: { x: 70, y: 55 }, description: "Dampens suspension movement" },
 
590
  },
591
  brakes: {
592
  name: "Brake System",
593
+ description: "The brake system provides stopping power with front ventilated disc brakes and rear solid disc brakes.",
594
  components: [
595
  { name: "Brake Pedal", position: { x: 20, y: 65 }, description: "Driver interface for brake activation" },
596
  { name: "Brake Booster", position: { x: 25, y: 55 }, description: "Amplifies brake pedal force" },
 
611
  },
612
  electrical: {
613
  name: "Electrical System",
614
+ description: "The electrical system powers all electronic components and manages vehicle systems through computer control.",
615
  components: [
616
  { name: "Battery", position: { x: 25, y: 45 }, description: "12-volt lead-acid battery providing electrical power" },
617
  { name: "Starter Motor", position: { x: 50, y: 48 }, description: "Engages flywheel to start the engine" },