Answer the question
In order to leave comments, you need to log in
How to control blur ccs effect?
I have a table, by clicking on its line, a div with a length of this line and a little lower below it pops up
$(document).on('click', 'tr', function (e) {
var cpossition = $(this).offset();
var cwidth = $(this).width()
$('div').offset({top:cpossition.top+25,left:cpossition.left});
$('div').width(cwidth);
$('div').show();
})
$(’table').addClass('addblur‘)
.addblur {
filter: blur(2px);
-webkit-filter: blur(2px);
-moz-filter: blur(2px);
-o-filter: blur(2px);
-ms-filter: blur(2px);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question