javascript - animated element position middle center -


i got problem code in chrome. when click on checkbox text/checkbox change position/padding/margin something.. :(

http://jsfiddle.net/k5tswhsx/

html

<input id="inp" type="checkbox" /> <div id="cb" class="inp_checkbox"></div> test 

js

function init_checkbox(input_id, check_id){     var input = $('#'+input_id), checkbox = $('#'+check_id).html('<div></div>'), options = {         duration : 200     };      checkbox.click(function(){         input.prop('checked', !input.prop('checked')).focus().change();     }), inner = $('<div></div>').appendto(checkbox.find('div:first'));      input.focus(function(){         checkbox.addclass('focus');     })     .blur(function(){         checkbox.removeclass('focus');     })     .change(function(){         if(input.prop('checked')){             inner.animate({                 height : 10,                 width : 10             }, options);         }         else{             inner.animate({                 height : 0,                 width : 0             }, options);         }     }); }  init_checkbox('inp', 'cb'); 

css

input[type=checkbox] {     display:none; } .inp_checkbox {     background:#fff;     border:1px solid #919191;     border-radius:1px;     transition:all 0.3s ease 0s;     box-shadow:0 1px 3px rgba(0,0,0,0.1); } .inp_checkbox.focus {     border-color:#007fff !important;     box-shadow:0 0 0 2px #007fff, 0 0 4px rgba(255,255,255,0.6); } .inp_checkbox {     display:inline-block; } .inp_checkbox > div {     display:flex;     cursor:pointer;     padding:1px;     height:18px;     width:18px; } .inp_checkbox > div > div {     background:#424242;     height:0;     width:0;     margin:auto;     border-radius:1px; } 

wrap "test" in span tag. add float:left both input , span tag.

fiddle

html

<input id="inp" type="checkbox" /> <div id="cb" class="inp_checkbox"></div> <span>test</span> 

css

span{     float: left; } .inp_checkbox {     float: left; } 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -