Сообщение от cinema4d
|
jquery оставить в основном
|
да но попробовать поставить версию выше
и добавить на основную jquery-ui
в примере ниже img через класс -- и немного css добавлено.css на ваше усмотрение.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Untitled Document</title>
<style type="text/css">
.sl1{
position: absolute;
z-index: 1;
}
.sl2{
position: absolute;
opacity: 0;
z-index: 2;
}
#container{
background:url(http://advnano.nichost.ru/bg.jpg)!important;
padding:100px 50px 0px 50px;
}
/*Фон слайдера*/
.slider {
width:230px;
height:11px;
background:url(http://advnano.nichost.ru/slider-bg.png);
position:relative;
margin:0;
padding:0 10px;
}
/*Стиль кнопки слайдера*/
.ui-slider-handle {
width:24px;
height:24px;
position:absolute;
top:-7px;
margin-left:-12px;
z-index:200;
background:url(http://advnano.nichost.ru/slider-button.png);
}
/*Элемент div результата, в котором выводится значение слайдера*/
.slider-result {
font-size:50px;
height:200px;
font-family:Arial, Helvetica, sans-serif;
color:#fff;
width:250px;
text-align:center;
text-shadow:0 1px 1px #000;
font-weight:700;
padding:20px 0;
}
/*Полоска заполнителя слайдера*/
.ui-widget-header {
background:url(http://advnano.nichost.ru/fill.png) no-repeat left;
height:8px;
left:1px;
top:1px;
position:absolute;
}
a {
outline:none;
-moz-outline-style:none;
}
.dd{
position: relative;
margin:0px auto ;
width: 835px;
height: 286px;
}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
</head>
<body>
<div align="center"><img src="http://advnano.nichost.ru/slider_head.png"/></div>
<div class="dd" >
<img class="sl1" src="http://advnano.nichost.ru/slider_on.png"/>
<img class="sl2" src="http://advnano.nichost.ru/slider_off.png"/>
</div>
<div id="container" align="center">
<div align="center" class="slider"></div>
</div>
<script>
var img = $(".sl2");
$( ".slider" ).slider(
{
min: 0,
max: 100,
value: 0,
slide: function(e, ui)
{
img.css({opacity : ui.value / 100});
}
});
</script>
</body>
</html>