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

Add blur to everything in an area AS3

I'd like to know how can I add blur in a certain area for example behind a movieclip, maybe a mask that will blur everything in the area of that moviclip. I don't want to blur everything, just what's behind a movieclip :) Sort of like Apple is doing…
ProgramKiddo
  • 313
  • 3
  • 12
0
votes
1 answer

How to blur the background of each image item in light gallery? (Specific)

I use Light Gallery (http://sachinchoolur.github.io/lightGallery) for my website and want to make some customization on it. I want to blur the background image of each and every image items that open in the gallery by using those images in their…
Sarathoos
  • 45
  • 1
  • 1
  • 11
0
votes
1 answer

RenderScript blur breaks bitmap loaded by Glide

So, the thing is that I am fetching some images using Glide. I fetch them directly into bitmap, and then I blur that bitmap using RenderScript and than show on UI blurred one. UI itself has "All Images" activity and "Single Image" activity. User…
SadClown
  • 648
  • 8
  • 16
0
votes
0 answers

Blurring a texture taking too much time in unity 2d

I'm making a 2d game for android where I want to make the background blur when a popup opens. I have tried so many techniques. Making two camera. Blurred main camera and changing culling mask of secondary camera to the popup layer. Using grabpass…
Jayadratha Mondal
  • 759
  • 1
  • 10
  • 21
0
votes
1 answer

How can I blur div tag and edit index?

I have nested div tags. I want to change their z-index value and make blur which is on back position. But it's not working. I think, in my codes only back div is blurred but my inputs are blurred as well which are located in front div. Thank you for…
Johnny
  • 459
  • 1
  • 4
  • 12
0
votes
2 answers

How to blur all views in container laying "beneath" blurring view if container created programmatically?

In project, that i am doing, i met with problem. I must create a View, based on xml, css, and assets, and manifest, describes relations. I use Compositor pattern for parse xml, and creating Views hierarchy. Problem is in few views in hiererchy.…
iamthevoid
  • 438
  • 4
  • 16
0
votes
0 answers

Alpacajs form data not submitting if user does not tab off textbox

I am having an issue with alpacajs form not submitting data from a textbox if the user does not tab off the textbox before clicking the submit button, if the user has 5 fields to fill out all but the last one is included in the json results.
theshwaguy
  • 439
  • 1
  • 3
  • 14
0
votes
1 answer

blur in componentWillUpdate not firing, react.js

I remove the unnecessary code to make the code clear. The full standalone html file is as follow. When key pressed, I expect the input to lose focus, but actually it doesn't. If I enclose blur with setTimeout(, 0), it will work. But why the…
user147932
  • 23
  • 1
  • 5
0
votes
1 answer

Modal in Angularjs- Update 2nd field only when blurred out from one field (Plunker attached)

I have the following plunker http://plnkr.co/edit/wYzXkL2VEpJIYGv353tn?p=preview If you click on Open Modal, you will see 3 input fields. 1st one is autocomplete input box named 'Select State'. 2nd is the dropdown named 'RestName' and 3rd is the…
Akanksha Iyer
  • 129
  • 2
  • 4
  • 7
0
votes
0 answers

alert pop-up comes up infinitely on change event in Jqgrid

I am having a jqGrid that contains two editable columns, start time and end time. I have written a function call on the blur event of each of those columns for validation. But the validation alert pop-up keeps popping up infinitely. …
Jack
  • 1
  • 2
0
votes
0 answers

android image getting blur after rotation

when I call this peace of code my bitmap looses quality and gets blurry public static Bitmap rotateBitmap( Bitmap source, double rotation ) { // No rotation specified, just return the original if ( rotation == 0.0 ) return (…
0
votes
0 answers

PrimeFaces enter key is interligne

i have dataTable,in therein(dataTable) i have two edits columns of type inputTextarea but when i presse enter key for insert interline in my inputTextarea the data saved. how i can insert interline and how i can replace event="cellEdit" by…
rachid
  • 11
  • 3
0
votes
0 answers

ng-blur and table elements

I couldn't find anything useful to resolve my problem, so hopefully I could get an answer here. Below is a simplified snippet. What I'm trying to achieve is that on the input field blur the new value of C is saved to DB. Also when X is clicked the…
AmeRyoki
  • 376
  • 1
  • 3
  • 14
0
votes
0 answers

Trigger command button action immediately after input text's blur listener

I have a PF's input text with ajax blur event and a command button that executes some action. If I enter some text in inputText and click on a commandButton, an ajax blur listener is executed, not a commandButton action, which is pretty much…
peterremec
  • 488
  • 1
  • 15
  • 46
0
votes
2 answers

Parent Container Edge Blur Transition Bug

I'm trying to blur a background Div that is inside a wrapping div. When I transition the opacity of the child div (the div that is being blurred), the blur seems to be propagating up to the parent element during the transition, causing the feathered…