zoukankan      html  css  js  c++  java
  • 简单的javascript/css slider滑动条

    
    


    <!
    DOCTYPE html> <html> <head> <style type="text/css"> #bar{ width:200px; height:25px; border:1px solid black; position:relative; } #slider{ width:0%; height:100%; background-color:red; top:0px; left:0px; position:absolute; cursor:pointer; } #info{ width:200px; height:25px; border:1px solid black; } </style> <script type="text/javascript"> var bar, slider; function init(){ bar = document.getElementById('bar'); slider = document.getElementById('slider'); info = document.getElementById('info'); bar.addEventListener('mousedown', startSlide, false); bar.addEventListener('mouseup', stopSlide, false); } function startSlide(event){ var set_perc = ((((event.clientX - bar.offsetLeft) / bar.offsetWidth)).toFixed(2)); info.innerHTML = 'start' + set_perc + '%'; bar.addEventListener('mousemove', moveSlide, false); slider.style.width = (set_perc * 100) + '%'; } function moveSlide(event){ var set_perc = ((((event.clientX - bar.offsetLeft) / bar.offsetWidth)).toFixed(2)); info.innerHTML = 'moving : ' + set_perc + '%'; slider.style.width = (set_perc * 100) + '%'; } function stopSlide(event){ var set_perc = ((((event.clientX - bar.offsetLeft) / bar.offsetWidth)).toFixed(2)); info.innerHTML = 'done : ' + set_perc + '%'; bar.removeEventListener('mousemove', moveSlide, false); slider.style.width = (set_perc * 100) + '%'; } </script> </head> <body onload='init()'> <div id='bar'> <div id='slider'> </div> </div> <br /> <div id='info'>info</div> </body> </html>
  • 相关阅读:
    机器码信息
    Q: ossfs挂载时如何设置权限?
    js获取url信息
    快递在线下单
    nginx反向代理与负载均衡配置
    mono-apache配置
    Migrating an Existing Website from SQL Membership to ASP.NET Identity
    C# GUID转换成16位字符串或19位数字并确保唯一
    图片服务器
    王宝强离婚宋喆遭扒 黑客告诉你哪些个人信息需要保护
  • 原文地址:https://www.cnblogs.com/wwwggg/p/2746901.html
Copyright © 2011-2022 走看看