Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
  
</head>
<body>
  <select name='style' id='style' class='form-control'>
          <option value='s1'>Стиль 1</option>
          <option value='s2'>Стиль 2</option>
          <option value='s3'>Стиль 3</option>
          <option value='s4'>Стиль 4</option>
          <option value='s5'>Стиль 5</option>
      
        
  </select>
<div class='foto foto_img'>
<div style='background-image: url(https://d.piclect.com/m160107_23839.jpg); background-position: center center; background-size: cover; width: 100%; height: 100%; cursor: pointer;'></div>
<div id='add_foto_style' ></div>
</div>
</body>
</html>
 
.foto_img {
    position: relative;
    overflow: hidden;
    width: 224px;
    height: 224px;
    background-color: #aaa;
}
.s1{border: 3px solid red;}
.s2{border: 3px solid green;}
.s3{border: 3px solid blue;}
.s4{border: 3px solid yellow;}
.s5{border: 3px solid orange;}
#add_foto_style {
    position: absolute;
    display: block;
    width: 218px;
    height: 218px;
    top: 0px;
}
 
    $(function(){
     var 
     style_select = $('select[name="style"'),
     style_div = $('#add_foto_style');
     style_select.on('change', function() {
     style_div.toggleClass($(this).val());
     });
    });
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers