ملعب مصمم بحيث يسهل استخدامه من قبل أنواع متعددة من الرياضات مثل: كرة السلة، كرة الطائرة، التنس الأرضي، كرة القدم.
تهدف الملاعب الرياضية متعددة الاستخدامات إلى استضافة الفعاليات الرياضية المختلفة في نفس المنطقة وتوفير أرضية مناسبة لهذه الفعاليات.
ملعب كرة القدم الخماسي هو نوع من الملاعب المصممة للعب كرة القدم بخمسة لاعبين في كل فريق يتراوح طول ملعب كرة القدم الخماسي عادةً بين 25 مترًا و42 مترًا، ويتراوح عرض ملعب كرة القدم الخماسي عادةً بين 16 مترًا و25 مترًا.
يعتبر ملعب كرة القدم الخماسي خيارًا رائعًا للعب المباريات الصغيرة والسريعة، وهو يتطلب مجموعة أصغر من اللاعبين ومساحة أقل من الملعب التقليدي، مما يجعله مناسبًا للتدريبات والبطولات غير الرسمية.
Student clubs are considered the appropriate environment for student activities. Through these clubs, the student can register in any student activity he likes, achieve his ambitions and hobbies, and show his creative talents and latent energies.
The general goals of student clubs are the following:
1. Encouraging constructive tendencies and teamwork among university students.
2. Deepening the link between students’ academic and non-academic activities.
3. Developing and encouraging talents and purposeful hobbies.
4. Encouraging literary, cultural, social, sporting and volunteer work to serve the university and the local community.
5. Developing interest in Arab-Islamic culture and civilization and caring for global culture.
Student clubs at the university:
1. Cultural Club.
2. Volunteer Work Club.
3. Club for people with special needs.
4. Library Friends Club.
5. Sports club.
6. Dialogue and Debate Club
7. Girl's Club.
8. Police Friends Club.
9. Language Club.
10. Environmental club and smoking reward
11. International Students Club.
12. Theater Club
13. Traffic Safety Club.
14. Media Club
Subscription link:
Objectives of Physical Therapy and Rehabilitation center :
1- Training physical therapy students in practical subjects on real medical cases.
2. Providing physical therapy services for students and employees at the university.
3. Providing physical therapy services to the local community for a financial cost
Statistics of non-Jordanian students in Jordanian higher education institutions for the academic year 2024/2025 |
Reality of Higher education in Jordan at the beginning of 2024/2025 |
![]() |
![]() |
إحصائيات الطلبة الوافدين / غير الأردنين في مؤسسات التعليم العالي الأردنية للعام الجامعي 2025/2024 |
واقع قطاع التعليم العالي في الأردن بداية العام الجامعي 2025/2024 |
![]() |
![]() |
أ. مشارك
علم نفس /تعلم ونمو
ق.أ. عميد كلية العلوم التربوية
الاردنيه
This email address is being protected from spambots. You need JavaScript enabled to view it.
أستاذ دكتور
الطفولة المبكرة
عضو هيئة تدريس
UNIVERSITI SAINS MALAYSIA
This email address is being protected from spambots. You need JavaScript enabled to view it.
<?php
// Define the target values for each counter
$target1 = 200;
$target2 = 250;
$target3 = 150;
// Define the durations for each count-up animation
$duration1 = 5000; // 5 seconds
$duration2 = 5000; // 5 seconds
$duration3 = 3000; // 3 seconds
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simultaneous Count Up Example</title>
<style>
.count-up {
font-size: 50px;
font-weight: bold;
text-align: center;
margin-top: 20px;
display: inline-block;
width: 100px;
}
.count-up-container {
text-align: center;
margin-top: 20%;
}
</style>
</head>
<body>
<div class="count-up-container">
<div class="count-up" id="countUp1">0</div>
<div class="count-up" id="countUp2">0</div>
<div class="count-up" id="countUp3">0</div>
</div>
<script>
// Function to perform the count-up for each target value
function countUp(target, duration, elementId) {
const element = document.getElementById(elementId);
let start = 0;
const step = target / (duration / 50); // Calculate step size for every 50ms
const interval = setInterval(() => {
start += step;
if (start >= target) {
start = target;
clearInterval(interval);
}
element.textContent = Math.floor(start); // Update the element with the current value
}, 50);
}
// Start the count-up for each value simultaneously using PHP-generated values
countUp(<?php echo $target1; ?>, <?php echo $duration1; ?>, 'countUp1'); // Count up to 200 in 5 seconds
countUp(<?php echo $target2; ?>, <?php echo $duration2; ?>, 'countUp2'); // Count up to 250 in 5 seconds
countUp(<?php echo $target3; ?>, <?php echo $duration3; ?>, 'countUp3'); // Count up to 150 in 3 seconds
</script>
</body>
</html>