-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc.html
190 lines (164 loc) · 7.23 KB
/
calc.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
<html>
<head>
<title>
Jamedium
</title>
<meta name="keywords" content="Jamedium, electronics, calculator,جميديوم, حساب,الة,حاسبة,الكترونيات">
<meta name="description" dir="rtl" content="نحن فريق يعمل من أجل تزويد المحتوى العلمي العربي بمحتوى علمي ممتع عالي الجودة وبلغتهم العربية لتحفيز الشباب على التعلم وتطوير مهاراتهم واكتساب الخبرات ومتطلبات سوق العمل.">
<meta name="author" content="Jamedium Web Developing Department">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/font awesome.css">
<link rel="icon" href="photos/jamedium-logo.ico">
</head>
<body>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
xfbml : true,
version : 'v7.0'
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Your Chat Plugin code -->
<div class="fb-customerchat"
attribution=setup_tool
page_id="414808336042436"
theme_color="#0A4D4D">
</div>
<!-- end of messenger code -->
<header class="whole-navbar">
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<ul class="navbar">
<li><a class="navcont" href="index.html">جميديوم</a></li>
<li><a class="navcont" href="news.html">اخبار</a></li>
<li><a class="navcont" href="articles.html">مقالات</a></li>
<li><a class="active" href="calc.html">الحاسبة</a></li>
<li><a class="navcont" href="sign.html">اشترك الآن</a></li>
<li><a class="navcont" href="contact.html">تواصل معنا</a></li>
<li><a class="navcont" href="about.html">من نحن</a></li>
</ul>
</header>
<noscript class="">لن تعمل الالة الحاسبة بسبب عدم دعم المتصفح الذي تستعمله للجافا سكريبت.</noscript>
<main class="content">
<div class="tabContainer">
<p class="medium-title">قسم المقاومات</p>
<div class="buttonContainer">
<button onclick="showPanel(0,'#660003')">توالي</button>
<button onclick="showPanel(1,'#660003')">توازي</button>
<button onclick="showPanel(2,'#660003')">مقسمات الجهد</button>
</div>
<div class="tabPanel">
<div class="par-res">
<div class="input-holder">
<input type="text" id="resSerNum"></input>
<button onclick="AddResSer()" class="calc-button">اضف مقاومات</button>
</div>
<div id="res-ser-inputs">
</div>
</div>
<p class="medium-title" id="resSerOut"></p>
</div>
<div class="tabPanel">
<div class="par-res">
<div class="input-holder">
<input type="text" id="resParNum"></input>
<button onclick="AddResPar()" class="calc-button">اضف مقاومات</button>
</div>
<div id="res-par-inputs">
</div>
</div>
<p class="medium-title" id="resParOut"></p>
</div>
<div class="tabPanel">
<p class="small-title">قريبًا...</p>
</div>
</div>
<div class="tabContainer">
<p class="medium-title">قسم المكثفات</p>
<div class="buttonContainer">
<button onclick="showPanel(3,'#660003')">توالي</button>
<button onclick="showPanel(4,'#660003')">توازي</button>
<button onclick="showPanel(5,'#660003')">فلاتر الترددات</button>
</div>
<div class="tabPanel">
<div class="par-res">
<div class="input-holder">
<input type="text" id="capSerNum"></input>
<button onclick="AddCapSer()" class="calc-button">اضف مكثفات</button>
</div>
<div id="cap-ser-inputs">
</div>
</div>
<p class="medium-title" id="capSerOut"></p>
</div>
<div class="tabPanel">
<div class="par-res">
<div class="input-holder">
<input type="text" id="capParNum"></input>
<button onclick="AddCapPar()" class="calc-button">اضف مكثفات</button>
</div>
<div id="cap-par-inputs">
</div>
</div>
<p class="medium-title" id="capParOut"></p>
</div>
<div class="tabPanel">
<p class="small-title">قريبًا...</p>
</div>
</main>
<footer class="footer-distributed">
<div class="footer-left">
<p class="footer-company-about" dir="rtl">
<span>من نحن</span>نحن فريق يعمل من أجل تزويد المحتوى العلمي العربي بمحتوى علمي ممتع عالي الجودة وبلغتهم العربية لتحفيز الشباب على التعلم وتطوير مهاراتهم واكتساب الخبرات ومتطلبات سوق العمل.</p>
<div class="footer-icons">
<a href="https://www.facebook.com/Jamedium"><i class="fa fa-facebook"></i></a>
<a href="https://www.youtube.com/channel/UCOY9FofqBEnOayDVWwhH9ig"><i class="fa fa-youtube"></i></a>
</div>
</div>
<div class="footer-center">
<div class="footer-middle">
<div>
<i class="fa fa-map-marker"></i>
<a><span>المقابلين</span> عمان، الاردن</a>
</div>
<div>
<i class="fa fa-phone"></i>
<a dir="ltr">+962745507</a>
</div>
<div>
<i class="fa fa-envelope"></i>
<a href="mailto:[email protected]" class="action-button" dir="ltr">[email protected]</a>
</div>
</div>
</div>
<div class="footer-right">
<h3>اكمل رحلتك<span> وتعرف علينا اكثر</span></h3>
<p class="footer-links">
<a class="action-button" href="index.html">جميديوم</a>
<a class="action-button" href="articles.html">مقالات</a>
<a class="action-button" href="news.html">اخبار</a>
<a class="action-button" href="calc.html">الحاسبة</a>
<a class="action-button" href="sign.html">اشترك مجانا</a>
<a class="action-button" href="about.html">من نحن</a>
</p>
</div>
<p class="footer-company-name" style="margin-top:50px; text-align:center;">Jamedium © 2020</p>
</footer>
<script src="javascript/main.js"></script>
</body>
</html>