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

.blur not firing on previously hidden tables

So the issue I seem to having is a bit of a weird one. So I have a form that is hidden until a button is clicked, once it's clicked the table is visible and has a .blur function on the inputs to check if they're empty. I've tried adding alert()…
GingerFish
  • 457
  • 3
  • 11
  • 26
0
votes
1 answer

Blur on UIImage

How can I change the color of the blur in a UIImage? I need a black blur and I don't know how to do it. I found another answer here in Stackoverflow (Blur UIImage to achieve effect like passcode blur of the wallpaper with swift). This answer is…
0
votes
1 answer

PATCH request does not work on blur, while does on keydown

I am trying to create an inline editor which will support editing on click and saving on enter/blur. The environment includes PHP v5.6, jQuery v3.1, Laravel v5.2 and MySQL. The question is, while saving with enter works, the saving on blur does…
0
votes
3 answers

How to make this image blur with css

The below is the image which is already blur i mean i want to make other image blur like that image. Below image with blur to make like the below image The below image without blur but want to make like above image The below is code i tried i…
overflowstack9
  • 345
  • 2
  • 5
  • 18
0
votes
1 answer

How is this iTunes album art blur effect achieved?

Images for reference: From clicking around on other albums, it appears that the album art is possibly zoomed in on and then a blurred mask is applied over top? Does anyone know how this kind of effect is achieved? It's a really good looking blur…
Gerrit SG
  • 103
  • 7
0
votes
1 answer

transparent blur fixed block with css

I'm trying to make a transparent fixed header without JS but only CSS. I have an example where used ::before to make blur substrate with negative z-index. https://jsfiddle.net/VeryDeepSky/w8a93wpu/ But I've just failed... so many times... Meanwhile,…
0
votes
1 answer

How to motion blur with ImageMagick using wand?

I want to use motion blur with ImageMagick. Motion blur in ImageMagick documentation. But in Wand there is only gaussian_blur. Gaussian blur in Wand documentation. Is motion blur missing in wand?
crg__
  • 11
  • 1
0
votes
1 answer

WPF Aero window without shadow

I am aware of the following question: I want to disable the shadow effect on a specific aero window However, I still need the DWM blur/reflections behind my Aero window, so I can't create a custom transparent one. How would I approach that? I could…
Lazlo
  • 8,518
  • 14
  • 77
  • 116
0
votes
1 answer

Blur on MKMapView

I know this question has been asked before, but I am trying to put a blur on a map view in my app. Everything I've tried just tints the map including code like this: var darkBlur = UIBlurEffect(style: UIBlurEffectStyle.Dark) var blurView =…
user5455038
0
votes
1 answer

Blurring a section of an image with bootstrap scalability

I am trying to blur a portion of the image behind the text but not the text and not anything outside of the box (code below). I would also appreciate a quick explanation too, if possible, as I am trying to understand it as well. I have messed around…
Steedy
  • 11
  • 2
0
votes
3 answers

Jquery value integer with id through loop

I have a simple for loop: for (var i = 0; i < 10; i++) { $('#input' + i).on('blur', function() { var values = $('#input' + i).val(); console.log(values); }); } I want to get the values of my #input, if I write something in…
utdev
  • 3,942
  • 8
  • 40
  • 70
0
votes
2 answers

UIImage Gaussian Blur with vImage

I am trying to find a faster way to generate Gaussian Blur image, this blog works great with most of the image. But when image has transparent backgroudcolor, the blured image looks bad The code below is copied from the blog: -(UIImage…
Shawn Wang
  • 2,314
  • 1
  • 16
  • 19
0
votes
1 answer

How to set blur effect on bitmap1 variable on onActivityResult?

public class Fram_1 extends AppCompatActivity { private int REQUEST_CAMERA = 0, SELECT_FILE = 1, SELECT_FILE2 = 2; private String userChoosenTask; ImageView img1, img2; TextView txt1, txt2; LinearLayout…
0
votes
3 answers

How to make blurred side bar like as given below snapshot?

I tried many methods to get blur side menu bar but no correct way is found. I have been used picasso lib, Blurry lib and other methods.
0
votes
0 answers

exclude a div from a jquery blur effect

I'm building a modal effect for a section of my website, but I've got a problem: I want to make a blur effect only on my background image, but I want to leave neat all the other element. It isn't actually a modal dialog, I just want to add a blur…
Porcellino80
  • 447
  • 7
  • 32
1 2 3
99
100