ホームページ > ウェブフロントエンド > htmlチュートリアル > スライダー効果_html/css_WEB-ITnose

スライダー効果_html/css_WEB-ITnose

WBOY
リリース: 2016-06-24 11:46:24
オリジナル
1175 人が閲覧しました

私が作成したすべてのスライダーエフェクトをこのブログ投稿の下に置きます。

私の最初の結果

css

body{        background: black;    }    #slider_1{        width: 400px;        height: 2px;        border-radius: 1px;        display: -webkit-flex;        position: relative;        margin: 30px auto;    }        #oSlider{        width: 15px;        height: 15px;        position: absolute;        border: 1px solid rgb(249,247,107);        border-radius: 10px;        background: rgb(249,247,107);        top: -7px;    }    #slider_11{        -webkit-flex:1;        background: rgb(249,247,107);        border-radius: 1px 0 0 1px;    }    #slider_12{        -webkit-flex:1;        background: rgba(255,255,255,0.3);        border-radius: 0 1px 1px 0px;    }  
ログイン後にコピー

#num{
font-size: 24px;
color:white;
display: block;
text-align: center;
}

 
ログイン後にコピー

HTML

<div id="slider_1">        <div id="slider_11"></div>        <span id="oSlider"></span>        <div id="slider_12"></div>    </div>    
ログイン後にコピー

js

var slider_1=document.getElementById("slider_1");
var oSlider=document.getElementById("oSlider");
var num=document.getElementById("num");
var width=400 ;
var min=-7;
var max=393;
varrag=false;
var slider_11=document.getElementById("slider_11");
var slider_12=document.getElementById("slider_12");
slider_1.onclick =function(){
var ewidth=event.clientX-slider_1.offsetLeft;
change(ewidth);

}
oSlider.onmousedown=function(){
rag=true;
}
document.onmousemove= function() {
if(drag){
var ewidth=event.clientX-slider_1.offsetLeft;
if(ewidth<=min||ewidth>=max) return ;
Change(ewidth);
}
}
document .onmouseup= function(){
ドラッグ=false;
}
関数change(ewidth){
num.innerText=Math.round((ewidth+6)/width*100);
slider_11.style["-webkit-flex"] =ewidth/width;
slider_12.style["-webkit-flex"]=(width-ewidth)/width;
oSlider.style.left=ewidth+"px";
}

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート