mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-12-15 07:06:53 +08:00
语法高亮,滚动条美化,设置页面调整
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<h2 id="Summary" name="Summary">概述</h2>
|
||||
<p><code><strong>Math.sin()</strong></code> 函数返回一个数值的正弦值。</p>
|
||||
<h2 id="Syntax" name="Syntax">语法</h2>
|
||||
<pre class="syntaxbox">Math.sin(<em>x</em>)</pre>
|
||||
<pre><code class="language-javascript">Math.sin(<em>x</em>)</code></pre>
|
||||
<h3 id="Parameters" name="Parameters">参数</h3>
|
||||
<dl>
|
||||
<dt>
|
||||
@@ -17,10 +17,10 @@
|
||||
<p>由于 <code>sin</code> 是 <code>Math</code> 的静态方法,所以应该像这样使用:<code>Math.sin()</code>,而不是作为你创建的 <code>Math</code> 实例的方法。</p>
|
||||
<h2 id="Examples" name="Examples">示例</h2>
|
||||
<h3 id="Example:_Using_Math.sin" name="Example:_Using_Math.sin">例子:使用 <code>Math.sin</code></h3>
|
||||
<pre class="brush:js">Math.sin(0); // 0
|
||||
<pre><code class="language-js">Math.sin(0); // 0
|
||||
Math.sin(1); // 0.8414709848078965
|
||||
|
||||
Math.sin(Math.PI / 2); // 1</pre>
|
||||
Math.sin(Math.PI / 2); // 1</code></pre>
|
||||
<h2 id="规范">规范</h2>
|
||||
<table class="standard-table">
|
||||
<tbody>
|
||||
|
||||
Reference in New Issue
Block a user