CSS 函数 - asin()



CSS 函数asin()是一个三角运算,用于计算-11范围内值的反正弦。

此函数执行单个计算,并返回表示<angle>值的弧度数,该值介于-90°90°之间。

可能的值

asin(number)函数仅允许单个值作为参数。

  • number - 计算结果为number,该值在-11的范围内。

返回值

number的反正弦始终导致<angle>-90deg90deg的范围内。

  • 如果number小于-1或大于1,则结果为NaN

  • 如果number0⁻,则结果为0⁻

语法

asin( <calc-sum> )    

CSS asin() - 旋转元素

以下示例演示了asin()函数的使用。

 
<html>
<head>
<style>
   div.box {
      width: 100px;
      height: 100px;
      background-color: gray;
      text-align:center;
      font-size:30px;
   }
   div.boxA {
      transform: rotate(asin(1));
      margin-bottom: 20px;
      margin-left:20px; 
   }
   div.boxB {
      transform: rotate(asin(0.5));
      margin-bottom: 20px;
      margin-left:20px;
   }
   div.boxC {
      transform: rotate(asin(0));
      margin-bottom: 20px;
      margin-left:20px;
   }
   div.boxD {
      transform: rotate(asin(-0.5));
      margin-bottom: 20px;
      margin-left:20px;
   }
   div.boxE {
      transform: rotate(asin(-1));
      margin-bottom: 20px;
      margin-left:20px;
   }
</style>
</head>
<body>
   <div class="box boxA">A</div>
   <div class="box boxB">B</div>
   <div class="box boxC">C</div>
   <div class="box boxD">D</div>
   <div class="box boxE">E</div>
</body>
</html>
广告