📜  script.aculo.us 滑块轴选项

📅  最后修改于: 2022-05-13 01:56:53.199000             🧑  作者: Mango

script.aculo.us 滑块轴选项

script.aculo.us 库是一个跨浏览器库,旨在改进网站的用户界面。 Slider 控件是允许用户输入值的细轨道。它是通过定义一个值范围来完成的,用户可以通过将手柄拖动到适当的值来选择这些值。

Sliders Axis选项用于定义滑块应该移动轴或方向。此选项接受一个字符串值,可以根据所需的方向设置为“水平”或“垂直”。

句法:

{ axis : horizontal | vertical }

值:此选项有两个值,如上所述和如下所述:

  • 水平:这会将滑块的方向定义为水平。它是默认值。
  • 垂直:这会将滑块的方向定义为垂直。

示例 1:

HTML


  

    
    
  
    
  
    
    

  

    

        GeeksforGeeks     

       

Sliders axis

       

        The slider is on the          horizontal axis.     

       
        
            
            
        
    
       

Current Slider Value:         0     

          


HTML


  

    
    
  
    
  
    
    

  

    

        GeeksforGeeks     

       

Sliders axis

       

The slider is on the vertical axis.

       
        
            
            
        
    
       

Current Slider Value:         0     

             


输出:

示例 2:

HTML



  

    
    
  
    
  
    
    

  

    

        GeeksforGeeks     

       

Sliders axis

       

The slider is on the vertical axis.

       
        
            
            
        
    
       

Current Slider Value:         0     

             

输出: