Questions tagged [blur]

The visual effect. For the JavaScript "loss of focus"-event, use [onblur].

For the JavaScript "loss of focus"-event, use [onblur]. For iOS 8 and above, you can use UIVisualEffectView to add blur effect on View.

1903 questions
0
votes
1 answer

How to apply a jquery function for children elements using a class as a selector?

I have a function that fills some fields automatically based on zip code. On my jquery call, I pass a class .zip as the selector, but the problem is that I have 2 forms on the same page (each one is on a separate tab) and after filling out the zip…
joaogdesigner
  • 430
  • 2
  • 7
  • 20
0
votes
0 answers

Speed up/Mask Blur

I am using code from this website to blur my photos in a Java application. The problem with it is that it is not fast enough to do the blurring effect in real-time. This means when the area it is blurring changes size, there is a large black box…
Dan
  • 7,286
  • 6
  • 49
  • 114
0
votes
1 answer

Adding validation in kendo datepicker results recusrive call

I have a datepicker and validation in it's blur event. If validation fails I am showing a message to user and focus the datepicker again. But it becomes recursive. Message appears all the time. User can't get of the loop unless she kills the page.…
Lonely Planeteer
  • 389
  • 1
  • 5
  • 21
0
votes
1 answer

iOS custom keyboard blur view as background

This is really simple, but maybe not easy? I'm trying to build a custom keyboard app for iOS, and so far I've made a concept work pretty well. But I really want to have the whole container/background view to be a blur view (frosted glass effect…
0
votes
0 answers

How to remover border with blur effect?

I'm creating a blur effect when someone clicks on a button to bring up a popup. I've read other places that the easiest way to remove the border of the border of the blurred object is to add negative margin to the applied object. I've tried that,…
Troy Riemer
  • 85
  • 10
0
votes
3 answers

How to set blur images load from url in Android Studio

I have a link is a images. Now I want to load this image and blur it in images Android Studio. This is my class. This is blur it from url but it fails. private void blurBackGround() { try { URL url = new URL(dmMember.getMemberImage()); …
0
votes
1 answer

Remove BlurEffect before to use it with a button

I have a button, when I clicked it my background_image turns in blur effect. @IBAction func button_MainClicked2(_ sender: UIButton) { if button_MainCenter == button_viajes.center{ UIView.animate(withDuration: 0.6, animations: …
0
votes
2 answers

Activity with transparent background and blur-filter

I'm currently working on an application where I at one point want to open an Activity that has a transparent background so that I can see the activity below it. This was simple enough and I solved it quick. However, now I want to also add some kind…
JesperQv
  • 280
  • 4
  • 12
0
votes
1 answer

How do you create a 'blurred text' image effect in iOS?

I want to create a text shaped blur effect to an image as shown below: Another example: I have found an answer on blurring a UILabel answer: How to blur UILabel text. But the effect is not correct. So, How can I create a blurred text image effect…
Chris Forever
  • 678
  • 1
  • 5
  • 18
0
votes
1 answer

Document ready's .on() function not picking up events triggered by 'onload' function

Why won't this work? I have a series of events where ===triggers==> my autoload() function ===should trigger===> $(document).ready ===should trigger==> console.log(' FOCUS/BLUR EVENT '); Now my autoLoad() function below is clearly…
rudminda
  • 137
  • 12
0
votes
1 answer

What is the listener for out of focus for a textfield

I know this is silly question, for out of focus for a textfield what listener should i use it? Is it a Blur?? I tried it, Can anyone just make my syntax correct or what wrong I'm doing,please. And correct it. Would be greatful. How should use it,…
user7569898
0
votes
1 answer

applying conditional blur filter style in Angular2 is not working

am having a div when I want to apply the blur filter on it but conditionally, like "
and inside the component this.visible = true // or false but am not getting…
devMan
  • 89
  • 2
  • 14
0
votes
1 answer

Blurring background image not text on hover

Hello dear developers, Iam having a problem by coding my Post grid. I want to blur the background image on hovering. But my text (in the same div is also blurring). Do you have a solution for this? Or isnt there an other way, without using this…
0
votes
2 answers

Blur Effect when push button

I want to use blur effect in my view's background in viewcontroller But some times it doesn't work and when it works it won't work properly and when I run the program on the big screed devices like iPad there is an black square on the top and I…
Saeed Rahmatolahi
  • 1,317
  • 2
  • 27
  • 60
0
votes
1 answer

parameter-passing: passing the string value into functions

I want to pass the string value which I get from the textarea into the focus() and blur(), but why what I will get is [object object]? I get the string value of each textarea successfully with each() and I store the string in a var - var…
Run
  • 54,938
  • 169
  • 450
  • 748