You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="ar">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<base href="../../../" />
|
|
<script src="page.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="page.css" />
|
|
</head>
|
|
<body class="rtl">
|
|
<h1>فحص توافق WebGL</h1>
|
|
<p>
|
|
على الرغم من أن هذه المشكلة أصبحت أقل وأقل ، إلا أن بعض الأجهزة أو المتصفحات قد لا تدعم WebGL.
|
|
تتيح لك الطريقة التالية التحقق مما إذا كانت مدعومة وعرض رسالة للمستخدم إذا لم تكن مدعومة.
|
|
</p>
|
|
|
|
<p>
|
|
أضف [link:https://github.com/mrdoob/three.js/blob/master/examples/jsm/capabilities/WebGL.js] إلى جافا سكريبت الخاص بك وقم بتشغيل ما يلي قبل محاولة تقديم أي شيء.
|
|
</p>
|
|
|
|
<code>
|
|
if ( WebGL.isWebGLAvailable() ) {
|
|
|
|
// Initiate function or other initializations here
|
|
animate();
|
|
|
|
} else {
|
|
|
|
const warning = WebGL.getWebGLErrorMessage();
|
|
document.getElementById( 'container' ).appendChild( warning );
|
|
|
|
}
|
|
</code>
|
|
</body>
|
|
</html>
|
|
|