Changes for page LSS-P - Mechanical
Last modified by Eric Nantel on 2024/07/03 09:43
Change comment: There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,61 +1,78 @@ 1 -{{warningBox warningText="More information coming soon"/}} 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 -(% class="wikigeneratedid" id="HTableofContents" %) 11 -**Page Contents** 12 - 13 -{{toc depth="3"/}} 14 - 15 - 16 -|(% style="width:25%" %)[[image:LSS-P-S1-Mountings.png]]|(% style="width:25%" %)[[image:LSS-P-S1-Mountings.png]]|(% style="width:25%" %)[[image:LSS-P-S1-Mountings.png]]| 17 -|((( 18 -**LSS-P-L1 ** 19 - 20 -**Six equally space M4 threaded holes on a 23mm diameter circle with a depth of 5mm** 21 - 22 - **Lite gearbox specs ** 23 - 24 -* **Nominal rotational torque: 31 Nm (3.2 Kg-cm)** 25 -* **Allowable peak torque (start / stop): 51 Nm (5.2 Kg-cm)** 26 -* **Max Instantaneous Torque: 70Nm** 27 -* **Basic static rated load: 6070 Nm** 28 -* **Permissible moment load: 41 Nm** 29 -* **Teeth gap: 10 arcsec** 30 -* **Grease: wave gear specific** 31 -)))|((( 32 -**LSS-P-L1 ** 33 - 34 -**Six equally space M4 threaded holes on a 23mm diameter circle with a depth of 5mm** 35 - 36 - **Lite gearbox specs ** 37 - 38 -* **Nominal rotational torque: 31 Nm (3.2 Kg-cm)** 39 -* **Allowable peak torque (start / stop): 51 Nm (5.2 Kg-cm)** 40 -* **Max Instantaneous Torque: 70Nm** 41 -* **Basic static rated load: 6070 Nm** 42 -* **Permissible moment load: 41 Nm** 43 -* **Teeth gap: 10 arcsec** 44 -* **Grease: wave gear specific** 45 -)))|((( 46 -**LSS-P-L1 ** 47 - 48 -**Six equally space M4 threaded holes on a 23mm diameter circle with a depth of 5mm** 49 - 50 - **Lite gearbox specs ** 51 - 52 -* **Nominal rotational torque: 31 Nm (3.2 Kg-cm)** 53 -* **Allowable peak torque (start / stop): 51 Nm (5.2 Kg-cm)** 54 -* **Max Instantaneous Torque: 70Nm** 55 -* **Basic static rated load: 6070 Nm** 56 -* **Permissible moment load: 41 Nm** 57 -* **Teeth gap: 10 arcsec** 58 -* **Grease: wave gear specific** 59 -))) 60 - 61 - 1 +{{html}} 2 +<html> 3 +<head> 4 + <style> 5 + table { 6 + width: 100%; 7 + border-collapse: collapse; 8 + } 9 + 10 + th, td { 11 + padding: 8px; 12 + text-align: left; 13 + border-bottom: 1px solid #ddd; 14 + } 15 + 16 + /* Media query for mobile devices */ 17 + @media only screen and (max-width: 600px) { 18 + /* Remove the table's default styles */ 19 + table, thead, tbody, th, td, tr { 20 + display: block; 21 + } 22 + 23 + /* Hide table headers (th) */ 24 + thead tr { 25 + position: absolute; 26 + top: -9999px; 27 + left: -9999px; 28 + } 29 + 30 + td { 31 + border: none; 32 + position: relative; 33 + padding-left: 50%; 34 + } 35 + 36 + /* Add a background color to the table rows */ 37 + tr { 38 + margin-bottom: 20px; 39 + } 40 + 41 + /* Display the data in each cell */ 42 + td:before { 43 + position: absolute; 44 + top: 6px; 45 + left: 6px; 46 + width: 45%; 47 + padding-right: 10px; 48 + white-space: nowrap; 49 + } 50 + } 51 + </style> 52 +</head> 53 +<body> 54 + <table> 55 + <thead> 56 + <tr> 57 + <th>Name</th> 58 + <th>Age</th> 59 + <th>Email</th> 60 + </tr> 61 + </thead> 62 + <tbody> 63 + <tr> 64 + <td>John Doe</td> 65 + <td>25</td> 66 + <td>[email protected]</td> 67 + </tr> 68 + <tr> 69 + <td>Jane Smith</td> 70 + <td>30</td> 71 + <td>[email protected]</td> 72 + </tr> 73 + <!-- Add more rows as needed --> 74 + </tbody> 75 + </table> 76 +</body> 77 +</html> 78 +{{/html}}