RError.com

RError.com Logo RError.com Logo

RError.com Navigation

  • 主页

Mobile menu

Close
  • 主页
  • 系统&网络
    • 热门问题
    • 最新问题
    • 标签
  • Ubuntu
    • 热门问题
    • 最新问题
    • 标签
  • 帮助
主页 / 问题 / 617723
Accepted
Alexandr_TT
Alexandr_TT
Asked:2020-01-22 02:02:46 +0000 UTC2020-01-22 02:02:46 +0000 UTC 2020-01-22 02:02:46 +0000 UTC

单击“停止”按钮时如何停止动画并冻结图像

  • 772

行星机构的动画。

当您按下按钮时,Stop齿轮旋转的动画应该停止并且图像“冻结”。但实际上,图像恢复到原来的状态。这可以从齿轮上的黄色标记看出。如何实现当您单击按钮Stop时,图像冻结在当前状态,而当您下次单击按钮GO时,动画不是从头开始,而是从固定状态开始。

答案 - 你需要删除黄色标记是不被接受的:-)

<style>
.container {
width:35vw;
height:35vh;
}
</style>
<div class="container">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink='http://www.w3.org/1999/xlink'  viewBox="0 0 400 400" >
  <title>animation planetary mechanism</title>
  <defs>
    <marker id="MarkerArrow" viewBox="0 0 20 20" refX="2" refY="5" markerUnits="userSpaceOnUse" orient="auto" markerWidth="20" markerHeight="20">
      <rect width="14" height="10" rx="2" fill="#22211D" />
    </marker>
    <line id="line1" x1="150" y1="100" x2="60" y2="100" style=" fill:none;
                 marker-end: url(#MarkerArrow);
                 marker-start: url(#MarkerArrow);
               stroke:#22211D; stroke-width:6; ">
    </line>
    <marker id="MarkerArrow-s" viewBox="0 0 20 20" refX="3" refY="1.7" markerUnits="userSpaceOnUse" orient="auto" markerWidth="20" markerHeight="20">
      <rect width="7" height="3.5" rx="2" fill="#22211D" />
    </marker>
    <line id="line-s" x1="175" y1="100" x2="202" y2="100" style=" fill:none;
             marker-end: url(#MarkerArrow-s1);
             marker-start: url(#MarkerArrow-s);
           stroke:#22211D; stroke-width:2; ">

    </line>
    <linearGradient id="vertical" x2="0%" y2="100%" spreadMethod="pad">
      <stop offset="0%" stop-color="powderblue" />
      <stop offset="100%" stop-color="lightgreen" />
    </linearGradient>

  </defs>
  <rect width="100%" height="100%" fill="url(#vertical)" />
  <g transform="translate(90,50)">

    <g id="wheel">
      <g>
        <animateTransform attributeName="transform" type="rotate" from="0 100 100" to="360 100 100" begin="gO1.click" end="stop1.click" dur="14s" repeatCount="indefinite" />
        <use xlink:href="#line1" transform="rotate(0 100 100)" />
        <use xlink:href="#line1" transform="rotate(120 100 100)" />
        <use xlink:href="#line1" transform="rotate(240 100 100)" />


        <circle cx="100" cy="100" r="15" style="stroke: #22211D; fill:none;   stroke-width: 4px;" />
        <circle cx="100" cy="100" r="50" style="stroke: #22211D; fill:none;   stroke-width: 15px;" />
        <circle cx="100" cy="100" r="60" style="stroke: #22211D; fill:none; stroke-dasharray: 5 6;  stroke-width: 10px;" />
        <circle cx="150" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
      </g>
    </g>

    <g id="col-small">

      <g>
        <animateTransform attributeName="transform" type="rotate" from="0 188 100" to="-360 188 100" begin="gO1.click" end="stop1.click" dur="3.5s" repeatCount="indefinite" />
        <use xlink:href="#line-s" transform="rotate(0 188 100)" />
        <use xlink:href="#line-s" transform="rotate(120 188 100)" />
        <use xlink:href="#line-s" transform="rotate(240 188 100)" />

        <circle cx="188" cy="100" r="8" style="stroke: #22211D; fill:none;   stroke-width: 4px;" />
        <circle cx="188" cy="100" r="18" style="stroke: #22211D; fill:none;   stroke-width: 7px;" />
        <circle cx="188" cy="100" r="24" style="stroke: #22211D; fill:none; stroke-dasharray: 5 5;  stroke-width: 10px;" />
        <circle cx="206" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />

      </g>
    </g>
    <desc>animation planetary mechanism https://svg-art.ru in pure svg</desc>
    <g id="planetar">
      <g>
        <animateTransform attributeName="transform" type="rotate" from="0 100 100" to="-360 100 100" begin="gO1.click" end="stop1.click" dur="28s" repeatCount="indefinite" />

        <circle cx="100" cy="100" r="116" style="stroke: #22211D; fill:none;   stroke-dasharray: 5 5;  stroke-width: 10px;" />
        <circle cx="100" cy="100" r="124" style="stroke: #22211D; fill:none;   stroke-width: 12px;" />
        <circle cx="224" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
      </g>
    </g>

    <g>
      <use xlink:href="#col-small" transform="rotate(240 100 100)" />
      <use xlink:href="#col-small" transform="rotate(120 100 100)" />
    </g>

    <g transform="translate(-10,180)">
      <g id="gO1">
        <rect x="45" y="85" height="22" width="60" rx="5" fill="#0080B8" stroke="dodgerblue" />
        <text x="62" y="102" font-size="16" fill="yellow">GO</text>
      </g>
      <g id="stop1">
        <rect x="110" y="85" height="22" width="60" rx="5" fill="crimson" stroke="red" />
        <text x="120" y="102" font-size="16" fill="yellow">STOP</text>
      </g>
    </g>

  </g>
</svg> 
</div>

javascript
  • 3 3 个回答
  • 10 Views

3 个回答

  • Voted
  1. Best Answer
    user207618
    2020-03-14T21:36:45Z2020-03-14T21:36:45Z

    我svg没有做太多工作,所以这就是我在谷歌上搜索的内容:
    Animation can be started/stopped via methods unpauseAnimations/ pauseAnimationsrespectively。

    你可以这样做:

    let flag = 0,
        svg = document.querySelector('svg');
    
    // Необходимо поймать второй клик (если на первом удалить атрибуты, анимация не начнётся), потом подменяем функцию на вызов по "разморозке" анимации
    let start = function(){
      if(flag === 1){
        // Убираем у animateTransform триггер, чтобы не сбрасывалась анимация на ноль
        Array.from(svg.querySelectorAll('animateTransform')).forEach(e => e.removeAttribute('begin'));
        start = _ => svg.unpauseAnimations();
        start();
      }
      flag++;
    }
    
    const pause = function(){
      svg.pauseAnimations();
    }
    <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink='http://www.w3.org/1999/xlink' width="400" height="400" viewBox="0 0 400 400" style="border:1px solid red;">
      <title>animation planetary mechanism</title>
      <defs>
        <marker id="MarkerArrow" viewBox="0 0 20 20" refX="2" refY="5" markerUnits="userSpaceOnUse" orient="auto" markerWidth="20" markerHeight="20">
          <rect width="14" height="10" rx="2" fill="#22211D" />
        </marker>
        <line id="line1" x1="150" y1="100" x2="60" y2="100" style=" fill:none;
    				 marker-end: url(#MarkerArrow);
    				 marker-start: url(#MarkerArrow);
    			   stroke:#22211D; stroke-width:6; ">
        </line>
        <marker id="MarkerArrow-s" viewBox="0 0 20 20" refX="3" refY="1.7" markerUnits="userSpaceOnUse" orient="auto" markerWidth="20" markerHeight="20">
          <rect width="7" height="3.5" rx="2" fill="#22211D" />
        </marker>
        <line id="line-s" x1="175" y1="100" x2="202" y2="100" style=" fill:none;
    			 marker-end: url(#MarkerArrow-s1);
    			 marker-start: url(#MarkerArrow-s);
    		   stroke:#22211D; stroke-width:2; ">
    
        </line>
        <linearGradient id="vertical" x2="0%" y2="100%" spreadMethod="pad">
          <stop offset="0%" stop-color="powderblue" />
          <stop offset="100%" stop-color="lightgreen" />
        </linearGradient>
    
      </defs>
      <rect width="100%" height="100%" fill="url(#vertical)" />
      <g transform="translate(90,50)">
    
        <g id="wheel">
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 100 100" to="360 100 100" begin="gO1.click" dur="14s" repeatCount="indefinite" />
            <use xlink:href="#line1" transform="rotate(0 100 100)" />
            <use xlink:href="#line1" transform="rotate(120 100 100)" />
            <use xlink:href="#line1" transform="rotate(240 100 100)" />
    
    
            <circle cx="100" cy="100" r="15" style="stroke: #22211D; fill:none;   stroke-width: 4px;" />
            <circle cx="100" cy="100" r="50" style="stroke: #22211D; fill:none;   stroke-width: 15px;" />
            <circle cx="100" cy="100" r="60" style="stroke: #22211D; fill:none; stroke-dasharray: 5 6;  stroke-width: 10px;" />
            <circle cx="150" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
          </g>
        </g>
    
        <g id="col-small">
    
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 188 100" to="-360 188 100" begin="gO1.click" dur="3.5s" repeatCount="indefinite" />
            <use xlink:href="#line-s" transform="rotate(0 188 100)" />
            <use xlink:href="#line-s" transform="rotate(120 188 100)" />
            <use xlink:href="#line-s" transform="rotate(240 188 100)" />
    
            <circle cx="188" cy="100" r="8" style="stroke: #22211D; fill:none;   stroke-width: 4px;" />
            <circle cx="188" cy="100" r="18" style="stroke: #22211D; fill:none;   stroke-width: 7px;" />
            <circle cx="188" cy="100" r="24" style="stroke: #22211D; fill:none; stroke-dasharray: 5 5;  stroke-width: 10px;" />
            <circle cx="206" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
    
          </g>
        </g>
        <desc>animation planetary mechanism https://svg-art.ru in pure svg</desc>
        <g id="planetar">
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 100 100" to="-360 100 100" begin="gO1.click" dur="28s" repeatCount="indefinite" />
    
            <circle cx="100" cy="100" r="116" style="stroke: #22211D; fill:none;   stroke-dasharray: 5 5;  stroke-width: 10px;" />
            <circle cx="100" cy="100" r="124" style="stroke: #22211D; fill:none;   stroke-width: 12px;" />
            <circle cx="224" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
          </g>
        </g>
    
        <g>
          <use xlink:href="#col-small" transform="rotate(240 100 100)" />
          <use xlink:href="#col-small" transform="rotate(120 100 100)" />
        </g>
    
        <g transform="translate(-10,180)">
          <g id="gO1" onclick='start();'>
            <rect x="45" y="85" height="22" width="60" rx="5" fill="#0080B8" stroke="dodgerblue" />
            <text x="62" y="102" font-size="16" fill="yellow">GO</text>
          </g>
          <g onclick='pause();'>
            <rect x="110" y="85" height="22" width="60" rx="5" fill="crimson" stroke="red" />
            <text x="120" y="102" font-size="16" fill="yellow">STOP</text>
          </g>
        </g>
    
      </g>
    </svg>

    • 10
  2. Sasha Omelchenko
    2020-03-15T22:07:47Z2020-03-15T22:07:47Z

    使用@Other 代码并无耻地使用优秀的老骑师重写它:

    var flag = 0,
        svg = document.querySelector('svg'),
        $svg = $(svg);
    
    // Необходимо поймать второй клик (если на первом удалить атрибуты, анимация не начнётся), потом подменяем функцию на вызов по "разморозке" анимации
    var start = function(){
      if(flag === 1){
        // Убираем у animateTransform триггер, чтобы не сбрасывалась анимация на ноль
        $svg.find('animateTransform').removeAttr('begin');
        
        start = function() {
          svg.unpauseAnimations()
        };
        
        start();
      }
      flag++;
    }
    
    var pause = function(){
      svg.pauseAnimations();
    }
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink='http://www.w3.org/1999/xlink' width="400" height="400" viewBox="0 0 400 400" >
      <title>animation planetary mechanism</title>
      <defs>
        <marker id="MarkerArrow" viewBox="0 0 20 20" refX="2" refY="5" markerUnits="userSpaceOnUse" orient="auto" markerWidth="20" markerHeight="20">
          <rect width="14" height="10" rx="2" fill="#22211D" />
        </marker>
        <line id="line1" x1="150" y1="100" x2="60" y2="100" style=" fill:none;
                     marker-end: url(#MarkerArrow);
                     marker-start: url(#MarkerArrow);
                   stroke:#22211D; stroke-width:6; ">
        </line>
        <marker id="MarkerArrow-s" viewBox="0 0 20 20" refX="3" refY="1.7" markerUnits="userSpaceOnUse" orient="auto" markerWidth="20" markerHeight="20">
          <rect width="7" height="3.5" rx="2" fill="#22211D" />
        </marker>
        <line id="line-s" x1="175" y1="100" x2="202" y2="100" style=" fill:none;
                 marker-end: url(#MarkerArrow-s1);
                 marker-start: url(#MarkerArrow-s);
               stroke:#22211D; stroke-width:2; ">
    
        </line>
        <linearGradient id="vertical" x2="0%" y2="100%" spreadMethod="pad">
          <stop offset="0%" stop-color="powderblue" />
          <stop offset="100%" stop-color="lightgreen" />
        </linearGradient>
    
      </defs>
      <rect width="100%" height="100%" fill="url(#vertical)" />
      <g transform="translate(90,50)">
    
        <g id="wheel">
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 100 100" to="360 100 100" begin="gO1.click" dur="14s" repeatCount="indefinite" />
            <use xlink:href="#line1" transform="rotate(0 100 100)" />
            <use xlink:href="#line1" transform="rotate(120 100 100)" />
            <use xlink:href="#line1" transform="rotate(240 100 100)" />
    
    
            <circle cx="100" cy="100" r="15" style="stroke: #22211D; fill:none;   stroke-width: 4px;" />
            <circle cx="100" cy="100" r="50" style="stroke: #22211D; fill:none;   stroke-width: 15px;" />
            <circle cx="100" cy="100" r="60" style="stroke: #22211D; fill:none; stroke-dasharray: 5 6;  stroke-width: 10px;" />
            <circle cx="150" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
          </g>
        </g>
    
        <g id="col-small">
    
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 188 100" to="-360 188 100" begin="gO1.click" dur="3.5s" repeatCount="indefinite" />
            <use xlink:href="#line-s" transform="rotate(0 188 100)" />
            <use xlink:href="#line-s" transform="rotate(120 188 100)" />
            <use xlink:href="#line-s" transform="rotate(240 188 100)" />
    
            <circle cx="188" cy="100" r="8" style="stroke: #22211D; fill:none;   stroke-width: 4px;" />
            <circle cx="188" cy="100" r="18" style="stroke: #22211D; fill:none;   stroke-width: 7px;" />
            <circle cx="188" cy="100" r="24" style="stroke: #22211D; fill:none; stroke-dasharray: 5 5;  stroke-width: 10px;" />
            <circle cx="206" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
    
          </g>
        </g>
        <desc>animation planetary mechanism https://svg-art.ru in pure svg</desc>
        <g id="planetar">
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 100 100" to="-360 100 100" begin="gO1.click" dur="28s" repeatCount="indefinite" />
    
            <circle cx="100" cy="100" r="116" style="stroke: #22211D; fill:none;   stroke-dasharray: 5 5;  stroke-width: 10px;" />
            <circle cx="100" cy="100" r="124" style="stroke: #22211D; fill:none;   stroke-width: 12px;" />
            <circle cx="224" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
          </g>
        </g>
    
        <g>
          <use xlink:href="#col-small" transform="rotate(240 100 100)" />
          <use xlink:href="#col-small" transform="rotate(120 100 100)" />
        </g>
    
        <g transform="translate(-10,180)">
          <g id="gO1" onclick='start();'>
            <rect x="45" y="85" height="22" width="60" rx="5" fill="#0080B8" stroke="dodgerblue" />
            <text x="62" y="102" font-size="16" fill="yellow">GO</text>
          </g>
          <g onclick='pause();'>
            <rect x="110" y="85" height="22" width="60" rx="5" fill="crimson" stroke="red" />
            <text x="120" y="102" font-size="16" fill="yellow">STOP</text>
          </g>
        </g>
    
      </g>
    </svg>

    • 6
  3. Alexandr_TT
    2020-02-25T23:05:17Z2020-02-25T23:05:17Z

    JS解决方案

    stop事件处理程序附加 到密钥<g id="stop1" onclick='Pause()'>

    功能

     function Pause()
      {  
         SVGRoot.pauseAnimations();
      };
    

    停止里面所有正在运行的动画,svg直到它开始

    一个函数unpauseAnimations(),它在上一个命令停止的地方开始播放动画

     var SVGDocument = null;
      var SVGRoot = null;
      var pauseButton = null;
      var playButton = null;
      var innerCircle = null;
      var outerCircle = null;
      var smallerCircle = null;
    
      function Init(evt)
      {  
         SVGDocument = evt.target.ownerDocument;
         SVGRoot = SVGDocument.getElementById('SVGRoot')
    
         pauseButton = SVGDocument.getElementById('stop1');
         playButton = SVGDocument.getElementById('gO1');
         innerCircle = SVGDocument.getElementById('innerCircle');;
         outerCircle = SVGDocument.getElementById('outerCircle');;
         smallerCircle = SVGDocument.getElementById('smallerCircle');;
      };
    
      function Pause()
      {  
         SVGRoot.pauseAnimations();
      };
    
      function Play()
      {
         if(SVGRoot.animationsPaused()){
            SVGRoot.unpauseAnimations();
         }
         else{
             innerCircle.beginElement();
             outerCircle.beginElement();
             smallerCircle.beginElement();
         }
      };
    <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink='http://www.w3.org/1999/xlink' width="400" height="400" viewBox="0 0 400 400" onload='Init(evt)' id = "SVGRoot">
      <title>animation planetary mechanism</title>
      <defs>
        <marker id="MarkerArrow" viewBox="0 0 20 20" refX="2" refY="5" markerUnits="userSpaceOnUse" orient="auto" markerWidth="20" markerHeight="20">
          <rect width="14" height="10" rx="2" fill="#22211D" />
        </marker>
        <line id="line1" x1="150" y1="100" x2="60" y2="100" style=" fill:none;
    				 marker-end: url(#MarkerArrow);
    				 marker-start: url(#MarkerArrow);
    			   stroke:#22211D; stroke-width:6; ">
        </line>
        <marker id="MarkerArrow-s" viewBox="0 0 20 20" refX="3" refY="1.7" markerUnits="userSpaceOnUse" orient="auto" markerWidth="20" markerHeight="20">
          <rect width="7" height="3.5" rx="2" fill="#22211D" />
        </marker>
        <line id="line-s" x1="175" y1="100" x2="202" y2="100" style=" fill:none;
    			 marker-end: url(#MarkerArrow-s1);
    			 marker-start: url(#MarkerArrow-s);
    		   stroke:#22211D; stroke-width:2; ">
    
        </line>
        <linearGradient id="vertical" x2="0%" y2="100%" spreadMethod="pad">
          <stop offset="0%" stop-color="powderblue" />
          <stop offset="100%" stop-color="lightgreen" />
        </linearGradient>
    
      </defs>
      <rect width="100%" height="100%" fill="url(#vertical)" />
      <g transform="translate(90,50)">
    
        <g id="wheel">
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 100 100" to="360 100 100" dur="14s" id = "innerCircle" begin="click" repeatCount="indefinite" />
            <use xlink:href="#line1" transform="rotate(0 100 100)" />
            <use xlink:href="#line1" transform="rotate(120 100 100)" />
            <use xlink:href="#line1" transform="rotate(240 100 100)" />
    
    
            <circle cx="100" cy="100" r="15" style="stroke: #22211D; fill:none;   stroke-width: 4px;" />
            <circle cx="100" cy="100" r="50" style="stroke: #22211D; fill:none;   stroke-width: 15px;" />
            <circle cx="100" cy="100" r="60" style="stroke: #22211D; fill:none; stroke-dasharray: 5 6;  stroke-width: 10px;" />
            <circle cx="150" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
          </g>
        </g>
    
        <g id="col-small">
    
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 188 100" to="-360 188 100" id = "smallerCircle" begin="click"  dur="3.5s" repeatCount="indefinite" />
            <use xlink:href="#line-s" transform="rotate(0 188 100)" />
            <use xlink:href="#line-s" transform="rotate(120 188 100)" />
            <use xlink:href="#line-s" transform="rotate(240 188 100)" />
    
            <circle cx="188" cy="100" r="8" style="stroke: #22211D; fill:none;   stroke-width: 4px;" />
            <circle cx="188" cy="100" r="18" style="stroke: #22211D; fill:none;   stroke-width: 7px;" />
            <circle cx="188" cy="100" r="24" style="stroke: #22211D; fill:none; stroke-dasharray: 5 5;  stroke-width: 10px;" />
            <circle cx="206" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
    
          </g>
        </g>
        
        <g id="planetar">
          <g>
            <animateTransform attributeName="transform" type="rotate" from="0 100 100" to="-360 100 100" id = "outerCircle" begin="click" dur="28s" repeatCount="indefinite" />
    
            <circle cx="100" cy="100" r="116" style="stroke: #22211D; fill:none;   stroke-dasharray: 5 5;  stroke-width: 10px;" />
            <circle cx="100" cy="100" r="124" style="stroke: #22211D; fill:none;   stroke-width: 12px;" />
            <circle cx="224" cy="100" r="3" style="stroke: #22211D; fill:yellow; " />
          </g>
        </g>
    
        <g>
          <use xlink:href="#col-small" transform="rotate(240 100 100)" />
          <use xlink:href="#col-small" transform="rotate(120 100 100)" />
        </g>
    
        <g transform="translate(-10,160)">
          <g id="gO1" onclick='Play()'>
            <rect x="45" y="85" height="22" width="60" rx="5" fill="#0080B8" stroke="dodgerblue" />
            <text x="62" y="102" font-size="16" fill="yellow">GO</text>
          </g>
          <g id="stop1" onclick='Pause()'>
            <rect x="110" y="85" height="22" width="60" rx="5" fill="crimson" stroke="red" />
            <text x="120" y="102" font-size="16" fill="yellow">STOP</text>
          </g>
        </g>
    
      </g>
    </svg>

    • 5

相关问题

Sidebar

Stats

  • 问题 10021
  • Answers 30001
  • 最佳答案 8000
  • 用户 6900
  • 常问
  • 回答
  • Marko Smith

    Python 3.6 - 安装 MySQL (Windows)

    • 1 个回答
  • Marko Smith

    C++ 编写程序“计算单个岛屿”。填充一个二维数组 12x12 0 和 1

    • 2 个回答
  • Marko Smith

    返回指针的函数

    • 1 个回答
  • Marko Smith

    我使用 django 管理面板添加图像,但它没有显示

    • 1 个回答
  • Marko Smith

    这些条目是什么意思,它们的完整等效项是什么样的

    • 2 个回答
  • Marko Smith

    浏览器仍然缓存文件数据

    • 1 个回答
  • Marko Smith

    在 Excel VBA 中激活工作表的问题

    • 3 个回答
  • Marko Smith

    为什么内置类型中包含复数而小数不包含?

    • 2 个回答
  • Marko Smith

    获得唯一途径

    • 3 个回答
  • Marko Smith

    告诉我一个像幻灯片一样创建滚动的库

    • 1 个回答
  • Martin Hope
    Air 究竟是什么标识了网站访问者? 2020-11-03 15:49:20 +0000 UTC
  • Martin Hope
    Алексей Шиманский 如何以及通过什么方式来查找 Javascript 代码中的错误? 2020-08-03 00:21:37 +0000 UTC
  • Martin Hope
    Qwertiy 号码显示 9223372036854775807 2020-07-11 18:16:49 +0000 UTC
  • Martin Hope
    user216109 如何为黑客设下陷阱,或充分击退攻击? 2020-05-10 02:22:52 +0000 UTC
  • Martin Hope
    Qwertiy 并变成3个无穷大 2020-11-06 07:15:57 +0000 UTC
  • Martin Hope
    koks_rs 什么是样板代码? 2020-10-27 15:43:19 +0000 UTC
  • Martin Hope
    user207618 Codegolf——组合选择算法的实现 2020-10-23 18:46:29 +0000 UTC
  • Martin Hope
    Sirop4ik 向 git 提交发布的正确方法是什么? 2020-10-05 00:02:00 +0000 UTC
  • Martin Hope
    faoxis 为什么在这么多示例中函数都称为 foo? 2020-08-15 04:42:49 +0000 UTC
  • Martin Hope
    Pavel Mayorov 如何从事件或回调函数中返回值?或者至少等他们完成。 2020-08-11 16:49:28 +0000 UTC

热门标签

javascript python java php c# c++ html android jquery mysql

Explore

  • 主页
  • 问题
    • 热门问题
    • 最新问题
  • 标签
  • 帮助

Footer

RError.com

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

帮助

© 2023 RError.com All Rights Reserve   沪ICP备12040472号-5