\n \n\n\n\n

    Then we add a script tag so we can define the behavior of the object.
    \n<\/p>\n\n

    \n   \n     \n       \n       \n       HTML Canvas Example<\/title>\n     <\/head>\n     <body>
    <h1><a href="http://m.miracleart.cn/">国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂</a></h1>\n       <canvas>\n\n\n\n<p>Wowu !!! We get the output.<\/p>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467309470040.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n<p>Looking at the structure of the code. We define canvas wrapper having an id attribute, this is can only be done by id and not class because of uniqueness which is used to reference the canvas with the id name.<br>\nTo access this we need to retrieve the node created in the Document Object Model(DOM) by using the getElementById(\"myCanvas\") and have access to it using the getContext(\"2d\") method.<\/p>\n\n<p>This method make us to have access to different drawing methods like<\/p>\n\n<\/pre><\/pre>\n<ul>\n<li>\nfillRect(x, y, width, height): This method is to draw a filled rectangle at a position(x, y) with a specified width and height.<\/li>\n<li>\nfillStyle = colorName: It is a property to set the color for the object. It could be a colorname, RGB or hex code for the object.<\/li>\n<\/ul>\n\n<p>Other methods are:<\/p>\n\n<ul>\n<li>\nstrokeRect(x, y, width, height): This method to to make a outline stroke on the rectangle, this may be used independently or combined with fillStyle and fillRect(x, y, width, height).<\/li>\n<li>\nclearRect(x, y, width, height): to clear the rectangle by making it transparent.<\/li>\n<\/ul>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467309545713.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n<hr>\n<h2>\n  \n  \n  ? <strong>Drawing basics<\/strong>\n<\/h2>\n\n<p>Different shapes and lines can be drawn using some specific methods depending on the object.<\/p>\n<h4>\n  \n  \n  1. Path:\n<\/h4>\n\n<p>Examples are line, wavy line, zigzag e.t.c<\/p>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467309649925.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n<p>For creating a line, the following method needs to be set up:<\/p>\n\n<ul>\n<li>\nbeginPath(): This method is to start a new path for a drawing.<\/li>\n<li>\nmoveTo(x, y): This is to move the drawing to the specified points.<\/li>\n<li>\nlineTo(x, y): This is to draw from the current position to the specified points.<\/li>\n<li>\nstroke(): This is to draw the line.<\/li>\n<\/ul>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467309776138.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n<h4>\n  \n  \n  2.   Rectangle and Square\n<\/h4>\n\n<ul>\n<li>Rectangle<\/li>\n<\/ul>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467309977240.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n<ul>\n<li>Square <\/li>\n<\/ul>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467310125861.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n<p>These following methods are used in creating a rectangle or square:<\/p>\n\n<ul>\n<li>\nfillRect: this method is for create rectangle and square only.<\/li>\n<li>\nclearRect(x, y, width, height): this method is to clear rectangle hence making it transparent.<\/li>\n<li>\nstrokeRect(x, y, width, height): is used to create an outline rectangle or square.<\/li>\n<li>\nfillStyle: this is used to fill the container of the rectangle or square.<\/li>\n<li>\nstrokeStyle: this method is for add stroke color to an outline rectangle.<\/li>\n<li>\nroundRect(x, y, width, height, radii): this method is for creating round border rectangle.<\/li>\n<\/ul>\n<h4>\n  \n  \n  3. Circle\n<\/h4>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467310240234.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><br>\n These following methods are used in creating a circle:<\/p>\n\n<ul>\n<li>\nbeginPath(): this method to begin a path.<\/li>\n<li>\narc(x, y, radius, startAngle, endAngle, anticlockwise): this is for to create circle where x and y is for center coordinate of the center, radius is the radius of the circle, startAngle and endAngle which is an angle for the circle.<\/li>\n<\/ul>\n<h4>\n  \n  \n  4. Polygon\n<\/h4>\n\n<p>To create a polygon, you need to determine the sides of the shape, it could be a triangle(3 sides), pentagon (5 sides), hexagon(6 sides) or decagon  (10 sides).<\/p>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467310482546.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n<p>These following methods are used in creating a circle:<\/p>\n\n<ul>\n<li>\nbeginPath(): this method is to create a new shape.<\/li>\n<li>\nclosePath(): this method is to end the shape.<\/li>\n<li>\ncx: its value for the center of x co-ordinates.<\/li>\n<li>\ncy: its value specifies the center for y co-ordinates.<\/li>\n<li>\nradius: radius of the shape.<\/li>\n<\/ul>\n\n<p>To get the angle, you have to calculate with this formula by dividing the circle into two;<br>\n<\/p>\n\n<pre>angle = 2π\(zhòng)/ n\n<\/pre>\n\n\n\n<p>wobei π 3,14 ist; n ist die Anzahl der Seiten. Sie müssen auch π\(zhòng)/2 minus, um die Position der Form von oben nach unten zu erhalten.<br>\n<img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467310570500.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467310736585.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n\n<hr>\n\n<h2>\n  \n  \n  ? <strong>Text mit <canvas><\/strong>\n<\/h2>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467310927100.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n<p>Um Text zu erstellen, werden die folgenden Methoden verwendet:<\/p>\n<ul>\n<li>\nSchriftart: um Schriftgr??e und Schriftfamilie anzugeben.<\/li>\n<li>\nfillStyle: Dies dient dazu, dem Text Farbe hinzuzufügen.<\/li>\n<li>\nfillText: Dies zeichnet einen gefüllten Text.<\/li>\n<li>\nStrokeText: Dies zeichnet einen Umrisstext<\/li>\n<li>\ncreateLinearGradient oder createRadialGradient: um dem Text Farbverl?ufe hinzuzufügen<\/li>\n<li>\ntextAlign: um den Text horizontal zu setzen<\/li>\n<\/ul>\n\n<p><img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/000\/173467311025343.jpg\" alt=\"HTML Canvas Made Simple: A Guide for Beginners.\"><\/p>\n\n\n<hr>\n\n<h2>\n  \n  \n  <strong>Fazit<\/strong>\n<\/h2>\n\n<p>Mit HTML <canvas> kann beim dynamischen Zeichnen von Grafiken helfen. Damit haben Sie gelernt, wie man mit Leinwand zeichnet, einschlie?lich der Verwendung und Bedeutung, die die Grundlage für die sp?tere Erstellung komplexer Grafiken bildet.<\/p>\n\n<h3>\n  \n  \n  <strong>Verbinde dich mit mir<\/strong>\n<\/h3>\n\n<p>Weitere Artikel zur Webentwicklung. Folgen Sie mir auf LinkedIn und X<br>\nLinkedIn X<\/p>\n\n\n          \n\n            \n        "}	</script>
    	
    <meta http-equiv="Cache-Control" content="no-transform" />
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <script>var V_PATH="/";window.onerror=function(){ return true; };</script>
    </head>
    
    <body data-commit-time="2023-12-28T14:50:12+08:00" class="editor_body body2_2">
    	<link rel="stylesheet" type="text/css" href="/static/csshw/stylehw.css">
    <header>
        <div   id="377j5v51b"   class="head">
            <div   id="377j5v51b"   class="haed_left">
                <div   id="377j5v51b"   class="haed_logo">
                    <a href="http://m.miracleart.cn/de/" title="" class="haed_logo_a">
                        <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                    </a>
                </div>
                <div   id="377j5v51b"   class="head_nav">
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Gemeinschaft" class="head_nava head_nava-template1">Gemeinschaft</a>
                        <div   class="377j5v51b"   id="dropdown-template1" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/de/article.html" title="Artikel" class="languagechoosea on">Artikel</a>
                                <a href="http://m.miracleart.cn/de/faq/zt" title="Themen" class="languagechoosea">Themen</a>
                                <a href="http://m.miracleart.cn/de/wenda.html" title="Fragen und Antworten" class="languagechoosea">Fragen und Antworten</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Lernen" class="head_nava head_nava-template1_1">Lernen</a>
                        <div   class="377j5v51b"   id="dropdown-template1_1" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/de/course.html" title="Kurs" class="languagechoosea on">Kurs</a>
                                <a href="http://m.miracleart.cn/de/dic/" title="Programmierw?rterbuch" class="languagechoosea">Programmierw?rterbuch</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Tools-Bibliothek" class="head_nava head_nava-template1_2">Tools-Bibliothek</a>
                        <div   class="377j5v51b"   id="dropdown-template1_2" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/de/toolset/development-tools" title="Entwicklungswerkzeuge" class="languagechoosea on">Entwicklungswerkzeuge</a>
                                <a href="http://m.miracleart.cn/de/toolset/website-source-code" title="Quellcode der Website" class="languagechoosea">Quellcode der Website</a>
                                <a href="http://m.miracleart.cn/de/toolset/php-libraries" title="PHP-Bibliotheken" class="languagechoosea">PHP-Bibliotheken</a>
                                <a href="http://m.miracleart.cn/de/toolset/js-special-effects" title="JS-Spezialeffekte" class="languagechoosea on">JS-Spezialeffekte</a>
                                <a href="http://m.miracleart.cn/de/toolset/website-materials" title="Website-Materialien" class="languagechoosea on">Website-Materialien</a>
                                <a href="http://m.miracleart.cn/de/toolset/extension-plug-ins" title="Erweiterungs-Plug-Ins" class="languagechoosea on">Erweiterungs-Plug-Ins</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="http://m.miracleart.cn/de/ai" title="KI-Tools" class="head_nava head_nava-template1_3">KI-Tools</a>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Freizeit" class="head_nava head_nava-template1_3">Freizeit</a>
                        <div   class="377j5v51b"   id="dropdown-template1_3" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/de/game" title="Spiel-Download" class="languagechoosea on">Spiel-Download</a>
                                <a href="http://m.miracleart.cn/de/mobile-game-tutorial/" title="Spiel-Tutorials" class="languagechoosea">Spiel-Tutorials</a>
    
                            </div>
                        </div>
                    </div>
                </div>
            </div>
                        <div   id="377j5v51b"   class="head_search">
                    <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('de')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                    <a href="javascript:;" title="suchen"  onclick="searchs('de')"><img src="/static/imghw/find.png" alt="suchen"></a>
                </div>
                    <div   id="377j5v51b"   class="head_right">
                <div   id="377j5v51b"   class="haed_language">
                    <a href="javascript:;" class="layui-btn haed_language_btn">Deutsch<i class="layui-icon layui-icon-triangle-d"></i></a>
                    <div   class="377j5v51b"   id="dropdown-template" style="display: none;">
                        <div   id="377j5v51b"   class="languagechoose">
                                                    <a href="javascript:setlang('zh-cn');" title="簡(jiǎn)體中文" class="languagechoosea">簡(jiǎn)體中文</a>
                                                    <a href="javascript:setlang('en');" title="English" class="languagechoosea">English</a>
                                                    <a href="javascript:setlang('zh-tw');" title="繁體中文" class="languagechoosea">繁體中文</a>
                                                    <a href="javascript:setlang('ja');" title="日本語(yǔ)" class="languagechoosea">日本語(yǔ)</a>
                                                    <a href="javascript:setlang('ko');" title="???" class="languagechoosea">???</a>
                                                    <a href="javascript:setlang('ms');" title="Melayu" class="languagechoosea">Melayu</a>
                                                    <a href="javascript:setlang('fr');" title="Fran?ais" class="languagechoosea">Fran?ais</a>
                                                    <a href="javascript:;" title="Deutsch" class="languagechoosea">Deutsch</a>
                                                </div>
                    </div>
                </div>
                <span id="377j5v51b"    class="head_right_line"></span>
                                <div style="display: block;" id="login" class="haed_login ">
                        <a href="javascript:;"  title="Login" class="haed_logina ">Login</a>
                    </div>
                    <div style="display: block;" id="reg" class="head_signup login">
                        <a href="javascript:;"  title="singup" class="head_signupa">singup</a>
                    </div>
                
            </div>
        </div>
    </header>
    
    	
    	<main>
    		<div   id="377j5v51b"   class="Article_Details_main">
    			<div   id="377j5v51b"   class="Article_Details_main1">
    							<div   id="377j5v51b"   class="Article_Details_main1M">
    					<div   id="377j5v51b"   class="phpgenera_Details_mainL1">
    						<a href="http://m.miracleart.cn/de/" title="Heim"
    							class="phpgenera_Details_mainL1a">Heim</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    												<a href="http://m.miracleart.cn/de/web-designer.html"
    							class="phpgenera_Details_mainL1a">Web-Frontend</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    												<a href="http://m.miracleart.cn/de/js-tutorial.html"
    							class="phpgenera_Details_mainL1a">js-Tutorial</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    						<span>HTML Canvas leicht gemacht: Ein Leitfaden für Anf?nger.</span>
    					</div>
    					
    					<div   id="377j5v51b"   class="Articlelist_txts">
    						<div   id="377j5v51b"   class="Articlelist_txts_info">
    							<h1 class="Articlelist_txts_title">HTML Canvas leicht gemacht: Ein Leitfaden für Anf?nger.</h1>
    							<div   id="377j5v51b"   class="Articlelist_txts_info_head">
    								<div   id="377j5v51b"   class="author_info">
    									<a href="http://m.miracleart.cn/de/member/1468492.html"  class="author_avatar">
    									<img class="lazy"  data-src="https://img.php.cn/upload/avatar/000/000/001/66ea8147b1057383.png" src="/static/imghw/default1.png" alt="Mary-Kate Olsen">
    									</a>
    									<div   id="377j5v51b"   class="author_detail">
    																			<a href="http://m.miracleart.cn/de/member/1468492.html" class="author_name">Mary-Kate Olsen</a>
                                    										</div>
    								</div>
                    			</div>
    							<span id="377j5v51b"    class="Articlelist_txts_time">Dec 20, 2024 pm	 01:38 PM</span>
    														
    						</div>
    					</div>
    					<hr />
    					<div   id="377j5v51b"   class="article_main php-article">
    						<div   id="377j5v51b"   class="article-list-left detail-content-wrap content">
    						<ins class="adsbygoogle"
    							style="display:block; text-align:center;"
    							data-ad-layout="in-article"
    							data-ad-format="fluid"
    							data-ad-client="ca-pub-5902227090019525"
    							data-ad-slot="3461856641">
    						</ins>
    						
    
    					<h3>
      
      
      <strong>Inhaltsverzeichnis</strong>
    </h3>
    
    <ol>
    <li>Einführung </li>
    <li>Erste Schritte
    </li>
    <li>Grundlagen des Zeichnens</li>
    <li>Text hinzufügen </li>
    <li>Fazit und n?chste Schritte
    </li>
    </ol>
    
    <h2>
      
      
      ? <strong>Einführung</strong>
    </h2>
    
    <p>HTML <canvas> ist ein HTML-Element mit dem Tag <canvas> das zum Zeichnen von Grafiken in zwei oder drei Dimensionen über Javascript verwendet wird. Die <Leinwand> ist ein Wrapper, der durch Javascript manipuliert werden kann, um Texte, Bilder, Formen und Animationen zu erstellen und so optisch ansprechende und interaktive Elemente zu erstellen.</p>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467309376509.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <p>Die Verwendung von <canvas> ist in allen Browsern und Ger?ten verfügbar, was den Entwicklern die Flexibilit?t gibt, beeindruckende Grafiken zu erstellen.  </p>
    
    <h4>
      
      
      Anwendungsf?lle von HTML <canvas>
    </h4>
    
    <ul>
    <li>Formen und Linien zeichnen: Es k?nnen Formen, Muster und Linien gezeichnet werden, einschlie?lich des Hinzufügens von Farben und Farbverl?ufen zu den Objekten.</li>
    <li>Animation und Interaktion: Die von <canvas> k?nnen animiert werden und auch Benutzerinteraktionen</li>
    <li>Bildmanipulation: Dies kann zum ?ndern der Gr??e oder zum Zuschneiden von Bildern verwendet werden.</li>
    <li>Spielgrafiken: Sie werden auch von Spieleentwicklern verwendet, um sch?ne Benutzeroberfl?chen für Spiele zu erstellen</li>
    <li>Datenvisualisierung: Zur Erstellung von Grafiken und Diagrammen.</li>
    </ul>
    
    
    <hr>
    
    <h2>
      
      
      ?<strong>Erste Schritte</strong>
    </h2>
    
    <p>Das HTML <canvas> wird in der HTML-Datei verwendet und kann intern im Skript-Tag oder extern in der Javascript-Datei manipuliert werden. Ohne diese Angabe wird das Canvas-Objekt nicht angezeigt. <br>
    Zuerst müssen wir eine index.html-Datei erstellen und den <canvas>-Wrapper für das zu erstellende Objekt einbinden.<br>
    </p>
    
    <pre class="brush:php;toolbar:false"><!doctype html>
       <html lang="en">
         <head>
           <meta charset="UTF-8" />
           <meta name="viewport" content="width=device-width, initial-scale=1.0" />
           <title>HTML Canvas Example</title>
         </head>
         <body>
           <canvas>
    
    
    
    <p>Then we add a script tag so we can define the behavior of the object.<br>
    </p>
    
    <pre class="brush:php;toolbar:false"><!doctype html>
       <html lang="en">
         <head>
           <meta charset="UTF-8" />
           <meta name="viewport" content="width=device-width, initial-scale=1.0" />
           <title>HTML Canvas Example</title>
         </head>
         <body>
           <canvas>
    
    
    
    <p>Wowu !!! We get the output.</p>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467309470040.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <p>Looking at the structure of the code. We define canvas wrapper having an id attribute, this is can only be done by id and not class because of uniqueness which is used to reference the canvas with the id name.<br>
    To access this we need to retrieve the node created in the Document Object Model(DOM) by using the getElementById("myCanvas") and have access to it using the getContext("2d") method.</p>
    
    <p>This method make us to have access to different drawing methods like</p>
    
    </pre></pre>
    <ul>
    <li>
    fillRect(x, y, width, height): This method is to draw a filled rectangle at a position(x, y) with a specified width and height.</li>
    <li>
    fillStyle = colorName: It is a property to set the color for the object. It could be a colorname, RGB or hex code for the object.</li>
    </ul>
    
    <p>Other methods are:</p>
    
    <ul>
    <li>
    strokeRect(x, y, width, height): This method to to make a outline stroke on the rectangle, this may be used independently or combined with fillStyle and fillRect(x, y, width, height).</li>
    <li>
    clearRect(x, y, width, height): to clear the rectangle by making it transparent.</li>
    </ul>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467309545713.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <hr>
    <h2>
      
      
      ? <strong>Drawing basics</strong>
    </h2>
    
    <p>Different shapes and lines can be drawn using some specific methods depending on the object.</p>
    <h4>
      
      
      1. Path:
    </h4>
    
    <p>Examples are line, wavy line, zigzag e.t.c</p>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467309649925.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <p>For creating a line, the following method needs to be set up:</p>
    
    <ul>
    <li>
    beginPath(): This method is to start a new path for a drawing.</li>
    <li>
    moveTo(x, y): This is to move the drawing to the specified points.</li>
    <li>
    lineTo(x, y): This is to draw from the current position to the specified points.</li>
    <li>
    stroke(): This is to draw the line.</li>
    </ul>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467309776138.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    <h4>
      
      
      2.   Rectangle and Square
    </h4>
    
    <ul>
    <li>Rectangle</li>
    </ul>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467309977240.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <ul>
    <li>Square </li>
    </ul>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467310125861.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <p>These following methods are used in creating a rectangle or square:</p>
    
    <ul>
    <li>
    fillRect: this method is for create rectangle and square only.</li>
    <li>
    clearRect(x, y, width, height): this method is to clear rectangle hence making it transparent.</li>
    <li>
    strokeRect(x, y, width, height): is used to create an outline rectangle or square.</li>
    <li>
    fillStyle: this is used to fill the container of the rectangle or square.</li>
    <li>
    strokeStyle: this method is for add stroke color to an outline rectangle.</li>
    <li>
    roundRect(x, y, width, height, radii): this method is for creating round border rectangle.</li>
    </ul>
    <h4>
      
      
      3. Circle
    </h4>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467310240234.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."><br>
     These following methods are used in creating a circle:</p>
    
    <ul>
    <li>
    beginPath(): this method to begin a path.</li>
    <li>
    arc(x, y, radius, startAngle, endAngle, anticlockwise): this is for to create circle where x and y is for center coordinate of the center, radius is the radius of the circle, startAngle and endAngle which is an angle for the circle.</li>
    </ul>
    <h4>
      
      
      4. Polygon
    </h4>
    
    <p>To create a polygon, you need to determine the sides of the shape, it could be a triangle(3 sides), pentagon (5 sides), hexagon(6 sides) or decagon  (10 sides).</p>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467310482546.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <p>These following methods are used in creating a circle:</p>
    
    <ul>
    <li>
    beginPath(): this method is to create a new shape.</li>
    <li>
    closePath(): this method is to end the shape.</li>
    <li>
    cx: its value for the center of x co-ordinates.</li>
    <li>
    cy: its value specifies the center for y co-ordinates.</li>
    <li>
    radius: radius of the shape.</li>
    </ul>
    
    <p>To get the angle, you have to calculate with this formula by dividing the circle into two;<br>
    </p>
    
    <pre class="brush:php;toolbar:false">angle = 2π/ n
    </pre>
    
    
    
    <p>wobei π 3,14 ist; n ist die Anzahl der Seiten. Sie müssen auch π/2 minus, um die Position der Form von oben nach unten zu erhalten.<br>
    <img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467310570500.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467310736585.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    
    <hr>
    
    <h2>
      
      
      ? <strong>Text mit <canvas></strong>
    </h2>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467310927100.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    <p>Um Text zu erstellen, werden die folgenden Methoden verwendet:</p>
    <ul>
    <li>
    Schriftart: um Schriftgr??e und Schriftfamilie anzugeben.</li>
    <li>
    fillStyle: Dies dient dazu, dem Text Farbe hinzuzufügen.</li>
    <li>
    fillText: Dies zeichnet einen gefüllten Text.</li>
    <li>
    StrokeText: Dies zeichnet einen Umrisstext</li>
    <li>
    createLinearGradient oder createRadialGradient: um dem Text Farbverl?ufe hinzuzufügen</li>
    <li>
    textAlign: um den Text horizontal zu setzen</li>
    </ul>
    
    <p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173467311025343.jpg" class="lazy" alt="HTML Canvas Made Simple: A Guide for Beginners."></p>
    
    
    <hr>
    
    <h2>
      
      
      <strong>Fazit</strong>
    </h2>
    
    <p>Mit HTML <canvas> kann beim dynamischen Zeichnen von Grafiken helfen. Damit haben Sie gelernt, wie man mit Leinwand zeichnet, einschlie?lich der Verwendung und Bedeutung, die die Grundlage für die sp?tere Erstellung komplexer Grafiken bildet.</p>
    
    <h3>
      
      
      <strong>Verbinde dich mit mir</strong>
    </h3>
    
    <p>Weitere Artikel zur Webentwicklung. Folgen Sie mir auf LinkedIn und X<br>
    LinkedIn X</p>
    
    
              
    
                
            <p>Das obige ist der detaillierte Inhalt vonHTML Canvas leicht gemacht: Ein Leitfaden für Anf?nger.. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!</p>
    
    
    						</div>
    					</div>
    					<div   id="377j5v51b"   class="wzconShengming_sp">
    						<div   id="377j5v51b"   class="bzsmdiv_sp">Erkl?rung dieser Website</div>
    						<div>Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn</div>
    					</div>
    				</div>
    
    				<ins class="adsbygoogle"
         style="display:block"
         data-ad-format="autorelaxed"
         data-ad-client="ca-pub-5902227090019525"
         data-ad-slot="2507867629"></ins>
    
    
    
    				<div   id="377j5v51b"   class="AI_ToolDetails_main4sR">
    
    
    				<ins class="adsbygoogle"
            style="display:block"
            data-ad-client="ca-pub-5902227090019525"
            data-ad-slot="3653428331"
            data-ad-format="auto"
            data-full-width-responsive="true"></ins>
        
    
    
    					<!-- <div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>Hei?er Artikel</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796821119.html" title="Handbuch: Stellar Blade Dateispeicherort speichern/Datei speichern/nicht speichern" class="phpgenera_Details_mainR4_bottom_title">Handbuch: Stellar Blade Dateispeicherort speichern/Datei speichern/nicht speichern</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 Wochen vor</span>
    										<span>By DDD</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796827210.html" title="Oguri Cap Build Guide | Ein hübsches Derby -Musume" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide | Ein hübsches Derby -Musume</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>2 Wochen vor</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796828723.html" title="Agnes Tachyon Build Guide | Ein hübsches Derby -Musume" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide | Ein hübsches Derby -Musume</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 Wochen vor</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796821436.html" title="Dune: Erwachen - Fortgeschrittener Planetologe Quest Walkthrough" class="phpgenera_Details_mainR4_bottom_title">Dune: Erwachen - Fortgeschrittener Planetologe Quest Walkthrough</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>3 Wochen vor</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796821278.html" title="Datum alles: Dirk und Harper Relationship Guide" class="phpgenera_Details_mainR4_bottom_title">Datum alles: Dirk und Harper Relationship Guide</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 Wochen vor</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/de/article.html">Mehr anzeigen</a>
    							</div>
    						</div>
    					</div> -->
    
    
    											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/hottools2.png" alt="" />
    									<h2>Hei?e KI -Werkzeuge</h2>
    								</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">
    													<h3>Undress AI Tool</h3>
    												</a>
    												<p>Ausziehbilder kostenlos</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
    													<h3>Undresser.AI Undress</h3>
    												</a>
    												<p>KI-gestützte App zum Erstellen realistischer Aktfotos</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">
    													<h3>AI Clothes Remover</h3>
    												</a>
    												<p>Online-KI-Tool zum Entfernen von Kleidung aus Fotos.</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
    													<h3>Clothoff.io</h3>
    												</a>
    												<p>KI-Kleiderentferner</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">
    													<h3>Video Face Swap</h3>
    												</a>
    												<p>Tauschen Sie Gesichter in jedem Video mühelos mit unserem v?llig kostenlosen KI-Gesichtstausch-Tool aus!</p>
    											</div>
    										</div>
    																</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    									<a href="http://m.miracleart.cn/de/ai">Mehr anzeigen</a>
    								</div>
    							</div>
    						</div>
    					
    
    
    					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>Hei?er Artikel</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796821119.html" title="Handbuch: Stellar Blade Dateispeicherort speichern/Datei speichern/nicht speichern" class="phpgenera_Details_mainR4_bottom_title">Handbuch: Stellar Blade Dateispeicherort speichern/Datei speichern/nicht speichern</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 Wochen vor</span>
    										<span>By DDD</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796827210.html" title="Oguri Cap Build Guide | Ein hübsches Derby -Musume" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide | Ein hübsches Derby -Musume</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>2 Wochen vor</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796828723.html" title="Agnes Tachyon Build Guide | Ein hübsches Derby -Musume" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide | Ein hübsches Derby -Musume</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 Wochen vor</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796821436.html" title="Dune: Erwachen - Fortgeschrittener Planetologe Quest Walkthrough" class="phpgenera_Details_mainR4_bottom_title">Dune: Erwachen - Fortgeschrittener Planetologe Quest Walkthrough</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>3 Wochen vor</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/1796821278.html" title="Datum alles: Dirk und Harper Relationship Guide" class="phpgenera_Details_mainR4_bottom_title">Datum alles: Dirk und Harper Relationship Guide</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 Wochen vor</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/de/article.html">Mehr anzeigen</a>
    							</div>
    						</div>
    					</div>
    
    
    											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/hottools2.png" alt="" />
    									<h2>Hei?e Werkzeuge</h2>
    								</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Notepad++7.3.1" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_title">
    													<h3>Notepad++7.3.1</h3>
    												</a>
    												<p>Einfach zu bedienender und kostenloser Code-Editor</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/toolset/development-tools/93" title="SublimeText3 chinesische Version" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 chinesische Version" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/toolset/development-tools/93" title="SublimeText3 chinesische Version" class="phpmain_tab2_mids_title">
    													<h3>SublimeText3 chinesische Version</h3>
    												</a>
    												<p>Chinesische Version, sehr einfach zu bedienen</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/toolset/development-tools/121" title="Senden Sie Studio 13.0.1" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Senden Sie Studio 13.0.1" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/toolset/development-tools/121" title="Senden Sie Studio 13.0.1" class="phpmain_tab2_mids_title">
    													<h3>Senden Sie Studio 13.0.1</h3>
    												</a>
    												<p>Leistungsstarke integrierte PHP-Entwicklungsumgebung</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title">
    													<h3>Dreamweaver CS6</h3>
    												</a>
    												<p>Visuelle Webentwicklungstools</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/de/toolset/development-tools/500" title="SublimeText3 Mac-Version" class="phpmain_tab2_mids_top_img">
    												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac-Version" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/de/toolset/development-tools/500" title="SublimeText3 Mac-Version" class="phpmain_tab2_mids_title">
    													<h3>SublimeText3 Mac-Version</h3>
    												</a>
    												<p>Codebearbeitungssoftware auf Gottesniveau (SublimeText3)</p>
    											</div>
    										</div>
    																	</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    									<a href="http://m.miracleart.cn/de/ai">Mehr anzeigen</a>
    								</div>
    							</div>
    						</div>
    										
    
    					
    					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
    								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    									src="/static/imghw/hotarticle2.png" alt="" />
    								<h2>Hei?e Themen</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/gmailyxdlrkzn" title="Wo ist der Login-Zugang für Gmail-E-Mail?" class="phpgenera_Details_mainR4_bottom_title">Wo ist der Login-Zugang für Gmail-E-Mail?</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>8637</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>17</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/java-tutorial" title="Java-Tutorial" class="phpgenera_Details_mainR4_bottom_title">Java-Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1783</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>16</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/cakephp-tutor" title="CakePHP-Tutorial" class="phpgenera_Details_mainR4_bottom_title">CakePHP-Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1727</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>56</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/laravel-tutori" title="Laravel-Tutorial" class="phpgenera_Details_mainR4_bottom_title">Laravel-Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1577</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>28</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/de/faq/php-tutorial" title="PHP-Tutorial" class="phpgenera_Details_mainR4_bottom_title">PHP-Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1442</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>31</span>
    										</div>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/de/faq/zt">Mehr anzeigen</a>
    							</div>
    						</div>
    					</div>
    				</div>
    			</div>
    							<div   id="377j5v51b"   class="Article_Details_main2">
    					<div   id="377j5v51b"   class="phpgenera_Details_mainL4">
    						<div   id="377j5v51b"   class="phpmain1_2_top">
    							<a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img
    									src="/static/imghw/index2_title2.png" alt="" /></a>
    						</div>
    						<div   id="377j5v51b"   class="phpgenera_Details_mainL4_info">
    
    													<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/de/faq/1796822063.html" title="Java vs. JavaScript: Die Verwirrung beseitigen" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175035046165294.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Java vs. JavaScript: Die Verwirrung beseitigen" />
    								</a>
    								<a href="http://m.miracleart.cn/de/faq/1796822063.html" title="Java vs. JavaScript: Die Verwirrung beseitigen" class="phphistorical_Version2_mids_title">Java vs. JavaScript: Die Verwirrung beseitigen</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:27 AM</span>
    								<p class="Articlelist_txts_p">Java und JavaScript sind unterschiedliche Programmiersprachen, die jeweils für verschiedene Anwendungsszenarien geeignet sind. Java wird für die Entwicklung gro?er Unternehmen und mobiler Anwendungen verwendet, w?hrend JavaScript haupts?chlich für die Entwicklung von Webseiten verwendet wird.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/de/faq/1796821632.html" title="JavaScript -Kommentare: Kurzer Erl?uterung" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175026483186295.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="JavaScript -Kommentare: Kurzer Erl?uterung" />
    								</a>
    								<a href="http://m.miracleart.cn/de/faq/1796821632.html" title="JavaScript -Kommentare: Kurzer Erl?uterung" class="phphistorical_Version2_mids_title">JavaScript -Kommentare: Kurzer Erl?uterung</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 am	 12:40 AM</span>
    								<p class="Articlelist_txts_p">JavaScriptComents AreseessentialFormaintaining, Lesen und GuidingCodeexexecution.1) einzelne Linecommments Arequickickexplanationen.2) Multi-LindexplainComproxlogicorProvedetailedDocumentation.3) InlinecommentsclarifyspecificPartsosensofCode.BestPracticic</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/de/faq/1796827639.html" title="Wie arbeite man mit Daten und Zeiten in JS?" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/431/639/175130445135407.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Wie arbeite man mit Daten und Zeiten in JS?" />
    								</a>
    								<a href="http://m.miracleart.cn/de/faq/1796827639.html" title="Wie arbeite man mit Daten und Zeiten in JS?" class="phphistorical_Version2_mids_title">Wie arbeite man mit Daten und Zeiten in JS?</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 01, 2025 am	 01:27 AM</span>
    								<p class="Articlelist_txts_p">Die folgenden Punkte sollten bei der Verarbeitung von Daten und Zeiten in JavaScript festgestellt werden: 1. Es gibt viele M?glichkeiten, Datumsobjekte zu erstellen. Es wird empfohlen, ISO -Format -Zeichenfolgen zu verwenden, um die Kompatibilit?t sicherzustellen. 2. Die Zeitinformationen erhalten und festlegen k?nnen und setzen Sie Methoden fest, und beachten Sie, dass der Monat mit 0 beginnt. 3. Die manuell formatierende Daten sind Zeichenfolgen erforderlich, und auch Bibliotheken von Drittanbietern k?nnen verwendet werden. 4. Es wird empfohlen, Bibliotheken zu verwenden, die Zeitzonen wie Luxon unterstützen. Das Beherrschen dieser wichtigen Punkte kann h?ufige Fehler effektiv vermeiden.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/de/faq/1796828200.html" title="Warum sollten Sie  Tags am Ende des  platzieren?" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175139053194540.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Warum sollten Sie  Tags am Ende des  platzieren?" />
    								</a>
    								<a href="http://m.miracleart.cn/de/faq/1796828200.html" title="Warum sollten Sie  Tags am Ende des  platzieren?" class="phphistorical_Version2_mids_title">Warum sollten Sie  Tags am Ende des  platzieren?</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:22 AM</span>
    								<p class="Articlelist_txts_p">PlatztagsattheBottomofabogpostorwebpageServeSpracticalPurposesforseo, Usexperience und design.1ithelpswithseobyallowingEnginestoaccessKeyword-relevantTagswithoutClutteringHemainContent.2.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/de/faq/1796822037.html" title="JavaScript vs. Java: Ein umfassender Vergleich für Entwickler" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175035006093854.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="JavaScript vs. Java: Ein umfassender Vergleich für Entwickler" />
    								</a>
    								<a href="http://m.miracleart.cn/de/faq/1796822037.html" title="JavaScript vs. Java: Ein umfassender Vergleich für Entwickler" class="phphistorical_Version2_mids_title">JavaScript vs. Java: Ein umfassender Vergleich für Entwickler</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:21 AM</span>
    								<p class="Articlelist_txts_p">JavaScriptispreferredforwebdevelopment,whileJavaisbetterforlarge-scalebackendsystemsandAndroidapps.1)JavaScriptexcelsincreatinginteractivewebexperienceswithitsdynamicnatureandDOMmanipulation.2)Javaoffersstrongtypingandobject-orientedfeatures,idealfor</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/de/faq/1796822137.html" title="JavaScript: Datentypen zur effizienten Codierung untersuchen" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175035157160537.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="JavaScript: Datentypen zur effizienten Codierung untersuchen" />
    								</a>
    								<a href="http://m.miracleart.cn/de/faq/1796822137.html" title="JavaScript: Datentypen zur effizienten Codierung untersuchen" class="phphistorical_Version2_mids_title">JavaScript: Datentypen zur effizienten Codierung untersuchen</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:46 AM</span>
    								<p class="Articlelist_txts_p">JavaScripthassevenfundamentaldatatypes:number,string,boolean,undefined,null,object,andsymbol.1)Numbersuseadouble-precisionformat,usefulforwidevaluerangesbutbecautiouswithfloating-pointarithmetic.2)Stringsareimmutable,useefficientconcatenationmethodsf</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/de/faq/1796828191.html" title="Was sprudelt und f?ngt Ereignis im Dom?" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175139034116786.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Was sprudelt und f?ngt Ereignis im Dom?" />
    								</a>
    								<a href="http://m.miracleart.cn/de/faq/1796828191.html" title="Was sprudelt und f?ngt Ereignis im Dom?" class="phphistorical_Version2_mids_title">Was sprudelt und f?ngt Ereignis im Dom?</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:19 AM</span>
    								<p class="Articlelist_txts_p">Ereigniserfassung und Blase sind zwei Phasen der Ereignisausbreitung in DOM. Die Erfassung erfolgt von der oberen Schicht bis zum Zielelement, und die Blase ist vom Zielelement bis zur oberen Schicht. 1. Die Ereigniserfassung wird implementiert, indem der UseCapture -Parameter von AddEventListener auf true festgelegt wird. 2. Ereignisblase ist das Standardverhalten, Uscapture ist auf false oder weggelassen. 3. Die Ereignisausbreitung kann verwendet werden, um die Ereignisausbreitung zu verhindern. 4. Event Bubbling unterstützt die Ereignisdelegation, um die Effizienz der dynamischen Inhaltsverarbeitung zu verbessern. 5. Capture kann verwendet werden, um Ereignisse im Voraus abzufangen, wie z. B. Protokollierung oder Fehlerverarbeitung. Das Verst?ndnis dieser beiden Phasen hilft dabei, das Timing und die Reaktion von JavaScript auf Benutzeroperationen genau zu steuern.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/de/faq/1796820615.html" title="Was ist der Unterschied zwischen Java und JavaScript?" class="phphistorical_Version2_mids_img">
    									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
    										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175012302052703.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Was ist der Unterschied zwischen Java und JavaScript?" />
    								</a>
    								<a href="http://m.miracleart.cn/de/faq/1796820615.html" title="Was ist der Unterschied zwischen Java und JavaScript?" class="phphistorical_Version2_mids_title">Was ist der Unterschied zwischen Java und JavaScript?</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 17, 2025 am	 09:17 AM</span>
    								<p class="Articlelist_txts_p">Java und JavaScript sind verschiedene Programmiersprachen. 1.Java ist eine statisch typisierte und kompilierte Sprache, die für Unternehmensanwendungen und gro?e Systeme geeignet ist. 2. JavaScript ist ein dynamischer Typ und eine interpretierte Sprache, die haupts?chlich für die Webinteraktion und die Front-End-Entwicklung verwendet wird.</p>
    							</div>
    													</div>
    
    													<a href="http://m.miracleart.cn/de/web-designer.html" class="phpgenera_Details_mainL4_botton">
    								<span>See all articles</span>
    								<img src="/static/imghw/down_right.png" alt="" />
    							</a>
    											</div>
    				</div>
    					</div>
    	</main>
    	<footer>
        <div   id="377j5v51b"   class="footer">
            <div   id="377j5v51b"   class="footertop">
                <img src="/static/imghw/logo.png" alt="">
                <p>Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!</p>
            </div>
            <div   id="377j5v51b"   class="footermid">
                <a href="http://m.miracleart.cn/de/about/us.html">über uns</a>
                <a href="http://m.miracleart.cn/de/about/disclaimer.html">Haftungsausschluss</a>
                <a href="http://m.miracleart.cn/de/update/article_0_1.html">Sitemap</a>
            </div>
            <div   id="377j5v51b"   class="footerbottom">
                <p>
                    ? php.cn All rights reserved
                </p>
            </div>
        </div>
    </footer>
    
    <input type="hidden" id="verifycode" value="/captcha.html">
    
    
    
    
    		<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
    	
    	
    	
    	
    	
    
    	
    	
    
    
    
    
    
    
    <footer>
    <div class="friendship-link">
    <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p>
    <a href="http://m.miracleart.cn/" title="国产av日韩一区二区三区精品">国产av日韩一区二区三区精品</a>
    
    <div class="friend-links">
    
    
    </div>
    </div>
    
    </footer>
    
    
    <script>
    (function(){
        var bp = document.createElement('script');
        var curProtocol = window.location.protocol.split(':')[0];
        if (curProtocol === 'https') {
            bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
        }
        else {
            bp.src = 'http://push.zhanzhang.baidu.com/push.js';
        }
        var s = document.getElementsByTagName("script")[0];
        s.parentNode.insertBefore(bp, s);
    })();
    </script>
    </body><div id="nf5ap" class="pl_css_ganrao" style="display: none;"><dd id="nf5ap"></dd><bdo id="nf5ap"></bdo><strong id="nf5ap"><abbr id="nf5ap"><var id="nf5ap"></var></abbr></strong><small id="nf5ap"><ruby id="nf5ap"><abbr id="nf5ap"></abbr></ruby></small><code id="nf5ap"><legend id="nf5ap"></legend></code><optgroup id="nf5ap"></optgroup><rp id="nf5ap"><video id="nf5ap"><dfn id="nf5ap"><u id="nf5ap"></u></dfn></video></rp><kbd id="nf5ap"></kbd><pre id="nf5ap"></pre><var id="nf5ap"><strong id="nf5ap"></strong></var><ruby id="nf5ap"><li id="nf5ap"><listing id="nf5ap"><strong id="nf5ap"></strong></listing></li></ruby><th id="nf5ap"></th><noframes id="nf5ap"><abbr id="nf5ap"></abbr></noframes><meter id="nf5ap"></meter><nobr id="nf5ap"></nobr><em id="nf5ap"><noframes id="nf5ap"><menu id="nf5ap"></menu></noframes></em><em id="nf5ap"><mark id="nf5ap"><ins id="nf5ap"></ins></mark></em><legend id="nf5ap"></legend><nav id="nf5ap"><menu id="nf5ap"><ol id="nf5ap"><th id="nf5ap"></th></ol></menu></nav><address id="nf5ap"></address><em id="nf5ap"></em><acronym id="nf5ap"></acronym><td id="nf5ap"><form id="nf5ap"><address id="nf5ap"><sup id="nf5ap"></sup></address></form></td><center id="nf5ap"></center><listing id="nf5ap"></listing><menuitem id="nf5ap"><delect id="nf5ap"></delect></menuitem><ruby id="nf5ap"><tr id="nf5ap"><optgroup id="nf5ap"><noframes id="nf5ap"></noframes></optgroup></tr></ruby><em id="nf5ap"></em><dl id="nf5ap"><strike id="nf5ap"><strike id="nf5ap"></strike></strike></dl><dd id="nf5ap"></dd><big id="nf5ap"></big><samp id="nf5ap"></samp><meter id="nf5ap"></meter><table id="nf5ap"></table><del id="nf5ap"></del><source id="nf5ap"><form id="nf5ap"></form></source><legend id="nf5ap"><xmp id="nf5ap"><dfn id="nf5ap"></dfn></xmp></legend><nobr id="nf5ap"></nobr><pre id="nf5ap"></pre><kbd id="nf5ap"></kbd><acronym id="nf5ap"></acronym><dl id="nf5ap"><p id="nf5ap"><tfoot id="nf5ap"></tfoot></p></dl><strike id="nf5ap"></strike><del id="nf5ap"><em id="nf5ap"><button id="nf5ap"></button></em></del><nav id="nf5ap"><dfn id="nf5ap"><code id="nf5ap"></code></dfn></nav><progress id="nf5ap"></progress><code id="nf5ap"></code><acronym id="nf5ap"></acronym><small id="nf5ap"></small><pre id="nf5ap"></pre><menu id="nf5ap"></menu><b id="nf5ap"></b><dl id="nf5ap"><legend id="nf5ap"><div id="nf5ap"><dd id="nf5ap"></dd></div></legend></dl><thead id="nf5ap"><acronym id="nf5ap"></acronym></thead><delect id="nf5ap"></delect><span id="nf5ap"><tr id="nf5ap"><dfn id="nf5ap"><mark id="nf5ap"></mark></dfn></tr></span><pre id="nf5ap"><sup id="nf5ap"><ruby id="nf5ap"><tr id="nf5ap"></tr></ruby></sup></pre><code id="nf5ap"></code><var id="nf5ap"></var><pre id="nf5ap"></pre><dfn id="nf5ap"></dfn><strong id="nf5ap"></strong><abbr id="nf5ap"><pre id="nf5ap"><ul id="nf5ap"><video id="nf5ap"></video></ul></pre></abbr><i id="nf5ap"></i><em id="nf5ap"></em><output id="nf5ap"></output><meter id="nf5ap"></meter><code id="nf5ap"></code><fieldset id="nf5ap"></fieldset><kbd id="nf5ap"></kbd><code id="nf5ap"><strong id="nf5ap"><menu id="nf5ap"><input id="nf5ap"></input></menu></strong></code><style id="nf5ap"></style><input id="nf5ap"><dl id="nf5ap"><td id="nf5ap"></td></dl></input><th id="nf5ap"><div id="nf5ap"></div></th><menu id="nf5ap"><input id="nf5ap"><sup id="nf5ap"><strike id="nf5ap"></strike></sup></input></menu><strong id="nf5ap"></strong><cite id="nf5ap"><fieldset id="nf5ap"><thead id="nf5ap"></thead></fieldset></cite><style id="nf5ap"></style><dd id="nf5ap"></dd><center id="nf5ap"><address id="nf5ap"><sub id="nf5ap"><center id="nf5ap"></center></sub></address></center><b id="nf5ap"></b><sup id="nf5ap"><progress id="nf5ap"><output id="nf5ap"></output></progress></sup><meter id="nf5ap"><samp id="nf5ap"><thead id="nf5ap"><small id="nf5ap"></small></thead></samp></meter><listing id="nf5ap"></listing><dd id="nf5ap"></dd><center id="nf5ap"></center><abbr id="nf5ap"><li id="nf5ap"><optgroup id="nf5ap"><strong id="nf5ap"></strong></optgroup></li></abbr><thead id="nf5ap"><font id="nf5ap"><pre id="nf5ap"><button id="nf5ap"></button></pre></font></thead><pre id="nf5ap"></pre><pre id="nf5ap"><dfn id="nf5ap"><pre id="nf5ap"><xmp id="nf5ap"></xmp></pre></dfn></pre><big id="nf5ap"><form id="nf5ap"><blockquote id="nf5ap"></blockquote></form></big><noframes id="nf5ap"><rp id="nf5ap"></rp></noframes><tbody id="nf5ap"></tbody><nav id="nf5ap"><strong id="nf5ap"><code id="nf5ap"></code></strong></nav><tr id="nf5ap"><small id="nf5ap"><noframes id="nf5ap"></noframes></small></tr><input id="nf5ap"><dl id="nf5ap"></dl></input><meter id="nf5ap"><del id="nf5ap"></del></meter><address id="nf5ap"><tr id="nf5ap"><menuitem id="nf5ap"><dd id="nf5ap"></dd></menuitem></tr></address><sub id="nf5ap"><progress id="nf5ap"><acronym id="nf5ap"></acronym></progress></sub><dl id="nf5ap"></dl></div>
    
    </html>