Tagged Questions
The background-position tag has no wiki summary.
6
votes
4answers
16k views
Change background position with jQuery
I'd like to change the background position of a CSS-class while hovering a li-element.
HTML:
<div id="carousel">
<ul id="submenu">
<li>Apple</li>
...
6
votes
10answers
11k views
Fix for background-position in IE
I get this problem in IE7 when running a piece of code that uses jquery and 2 jquery plugins. The code works in FF3 and Chrome.
The full error is:
Line: 33
Char: 6
Error: bg is null or not an ...
5
votes
1answer
55 views
CSS: Difficulty with background-position different corner offsets
I'm having some troubles making buttons using multiple backgrounds. I know I can use :before and :after but I'd like to figure this out if possible.
Here is the Jsfiddle ...
5
votes
8answers
10k views
IE6 background-position(?) issue
I apply to stackoverflow as my last resort.
I got this ie6 bug while using the image at the background of the link.
It seems that ie6 scrolls the background. How can I avoid it?
At some width it ...
4
votes
1answer
817 views
jQuery div hover function not working in Firefox
http://cambridgeuplighting.com/testimonials
This code works in Safari, IE7, and IE8, but not in FF 3.5.7. The code changes the background of the little background icon when you hover over a div.
...
3
votes
1answer
128 views
Animate background not working as expected
I have done this sort of thing before, but it's not working for me now...
I have a container div, and a div inside with partly transparent image. When the user hovers over the container div I would ...
3
votes
1answer
1k views
CSS sprite image + background-repeat a part of it
Can I repeat a part of an image [which it's in a CSS sprite image] in the background ?!
like for example :
background-position : -13px top ;
background-repeat : repeat-y ;
because I got the ...
3
votes
4answers
708 views
Changing only y pos of background image via Jquery
I want to change button's background image y position with hover function. Is there a simple way of keeping xpos or should I get position first, split it and use again with $.css() again.
I should ...
3
votes
5answers
10k views
CSS background-position not working in Mobile Safari (iPhone/iPad)
I have an issue with background-position in mobile safari. It works fine on other desktop browsers, but not on iPhone or iPad.
body {
background-color: #000000;
background-image: ...
2
votes
1answer
126 views
Why can't I animate backgroundPosition past jquery 1.4.4?
I see here that the lack of backgroundPosition animation in jquery 1.5.0 is a known bug. Has it still not been fixed?
See this jsfiddle, with backgroundPosition animating in jquery 1.4.4, and then ...
2
votes
2answers
68 views
Is it possible to change the background-position while keeping “top right”?
I have an object that have a background with background-position "top right"
I want to move this background-position up by 10px (on hover), but as soon I change the values, the new value is inserted ...
2
votes
1answer
159 views
How can I have fixed background in a div?
I have a site, and in one of my pages I use a div which looks like an editor. I can have a background in this div and the content above it. I want this background to stay in a fixed position while I ...
2
votes
3answers
201 views
IE (bug) percentages with background-position
I'm having an issue in IE only with a background image for an element in a flexible/fluid layout.
Basically, I need the background image (which is 1px by 1px) to tile vertically. When the layout is ...
2
votes
6answers
8k views
jquery animate background position
I can't seem to get this working.
$('#product_family_options_dd').animate({
height: '300px',
width: '900px',
backgroundPosition: '-20px 0px',
},
The height and width animate but not ...
2
votes
2answers
1k views
Dynamically change css backgroundPosition left AND top via Jquery
I'm a new programmer and english is not my mother tongue so please forgive me in advance for both programming and english mistakes.
Here is what I want to do: I have a div tag that contains an image ...
2
votes
2answers
243 views
ASP.NET - How can I change the position of a background image when a button is clicked?
I have a standard asp button and on click it triggers:
protected void btnDealItem_Click(object sender, EventArgs e)
{
divMyDiv.Style.Add("background-position", "70px 0");
}
Problem is, when the ...
2
votes
1answer
1k views
jQuery background-position animation
I've created an image which is basically a CSS sprite of 3 images together. It's size is 278x123 so they are basically 3 images of 278x41.
What I am trying to do is to make an animation of that by ...
2
votes
2answers
676 views
CSS Put image at top of page
I need to have an image at the top-center of a web page in css. Now, Im just using the background-image: in css but this puts it at the middle of the page.
Here's my code:
body {
background-image: ...
2
votes
1answer
827 views
How do I repeat part of an image using background-position and CSS sprites?
I would like to create some buttons with dynamic width using CSS sprites and background-position but I'm not sure if what I want is possible..
I would like the button to have a left-side, middle, and ...
2
votes
1answer
541 views
Adding amount to background-position on click (jQuery)
I pretty new to js and jquery so please bear with me.
I'd like to change the background-position and add 1% on #div1 while clicking on #button1 and take -1% on #div1 while clicking on #button2
How ...
2
votes
2answers
741 views
CSS background-position: animating and performance
I've seen many examples for animating the background-position of elements to produce nice looking scrolling backgrounds.
These examples tend to also script in reset counters to put the ...
2
votes
3answers
670 views
changing an element's background using the CSS property
I have a div with a background, and I'd like to change the background's position on click.
This is my jQuery snippet :
$('#sprite').click(function() {
$(this).css('backgroundPosition','-40px');
...
1
vote
2answers
53 views
jQuery animate() backgroundPosition not working fine
I have this simple HTML:
<span class="coverImg" style="background-image:url('images/show2.jpg');"></span></a>
and some Javascript:
$(function() {
...
1
vote
0answers
44 views
Custom “animate” jQuery function. How to reset step's “now” variable?
I need to animate the background-position property of an element with jQuery. By following this tutorial, that uses default jQuery animate function, I had no luck.
...
1
vote
3answers
52 views
Why isn't background-position working?
I don't often use background-position, so maybe I'm not doing this correctly, but my css rule is not taking effect.
background-position:right 353px bottom 20px;
Here's the code:
HTML
<h1>
...
1
vote
2answers
43 views
How to assign background-position as something like 'margin-right: 10px'?
I am trying to put an image as the background and would like it to align to the right, but not closely align to. Something like margin-right:10px. Is it possible to do that in pure css, without ...
1
vote
2answers
78 views
CSS background-attachment fixed - out of flow?
I have some HTML like this:
<div id='container'>
<div id='main'>
</div>
</div>
And the CSS
div#container {
width:960px;
margin:0 auto;
}
div#main {
...
1
vote
1answer
263 views
Image reveal using JQuery and css background-position: jitters (except firefox) + percentage conundrum
I'm doing a JQuery animated menu thing. This is just the parts of the code pertaining to my question.
I have a bunch of divs that are animated (using JQuery) so they expand sideways, left and right. ...
1
vote
1answer
102 views
Javascript timer using style.backgroundPosition Works fine in ff & chrome, not so lucky in IE
I have made a very simple countdown timer in js that takes values from an array and applies them to an elements background-position property(this displays a different part of an image dependant on the ...
1
vote
1answer
148 views
CSS background-position combined types
CSS3 background customize is a powerful tool, but it lacks one feature for me. I can set background-position in few ways, but I need some combinations of those. For example, there is a dynamically ...
1
vote
2answers
88 views
background-position question
On this page I"ve been working on forever, I have this column headed "Bid x Ask":
in each of whose cell backgrounds there is supposed to be a bar chart that conveys the ratio of the numbers in the ...
1
vote
2answers
193 views
animate backgroundPosition
Anyone know why the below would not work. If I just set the css directly without animate it works. //div.css( {backgroundPosition: "bottom left"} );
$("#menu li").bind("mouseover", function(){
...
1
vote
2answers
117 views
CSS background-position not applying to my class
Here is my CSS:
.header
{
background-image:url(Images/head.png);
background-position: center top;
background-repeat:no-repeat;
width:1010px;
height:269px;
}
This is my HTML:
...
1
vote
5answers
641 views
css background-position not working
I have 3 a tags disguised as "roll over buttons".
<div id="buttons">
<a class='button' id='but1' href=''></a>
<a class='button' id='but2' href=''></a>
<a ...
1
vote
1answer
326 views
jquery: animate background position without plugin?
hey guys,
I have no luck making a simple background image animation working without the background-position-plugin of protofunc().
I used the plugin before and everything worked fine. However since ...
1
vote
1answer
292 views
IE6 background-position with a sprite
I have a sprite with two images, top and bottom rounded borders for some feature box. Some example HTML:
<div class="box">
<div class="top"></div>
<div class="middle">Content ...
1
vote
1answer
841 views
Problem with background-position with px in Firefox 4
I'm positioning a background sprite and changing the position on hover (using jQuery), and it works as expected in Chrome, IE(8) and Safari (I'm on a PC, Win 7) but I'm having problems with Firefox ...
1
vote
2answers
2k views
jquery animate background-position firefox
I got this background image slider thing working in chrome and safari, but it doesnt do anything in firefox. any help?
$(function(){
var image= ".main-content";
var button_left= ...
1
vote
3answers
205 views
Center website background on the screen?
I've seen this trick on many websites and I want to make it for a project of my own.
I have an image background.jpg that is VERY BIG, just to be ready for any screen size.
I wish to center the ...
1
vote
2answers
179 views
How can I minify CSS? Shorthand for property [ background-position ]?
Mix 1 look at the source-code of my site with 19 chars of byte-wasting letters background-position, for the sprite icons positions, and you get a feel of my little frustration on this long word:
...
1
vote
1answer
155 views
Set background position according to contents of span with jQuery
I would like to change the position of a background image to match the numeric contents of a span element.
My html:
<div id="ecoBar">
<div id="ecoSlider"></div>
...
1
vote
1answer
415 views
Incremental background position animation with jQuery
I've got a 100% wide and 284px high div called #photoStripe with a 5000px wide background image. Then left and right nav buttons over it. The idea is to be able to pan left an right, by animating the ...
1
vote
1answer
368 views
Jquery - Change Background position on 1st click, reset on the 2nd
Evening all! I have half a script that I need to change the CSS background position of an element when it is clicked - this works fine. However I need the CSS to reset the background position to 0 0 ...
1
vote
1answer
444 views
How can I use jQuery to add a fade in hover effect to my nav items?
I'm brand new to jQuery (and JS in general) and I know it is possible to use it to add a fade in effect to my navigation rollovers.
Right now I'm using a master background sprite for the nav, and on ...
1
vote
2answers
1k views
Help applying a fade to background-position change with Jquery
I'm very new to Jquery but have finally worked out how to change the background-image (a sprite) of my #contentContainer when hovering over a separate 'trigger' image. However, for the life of me I ...
1
vote
3answers
529 views
a:hover background-postition problem
For some reason, I am not entirely sure why, but the following is not working. The background position simply stays the same on hover. I cannot figure out why. I could do it another way, but I would ...
1
vote
2answers
267 views
CSS background: set position then do a shift?
The background-position property can be set in a variety of ways such as "top right" or "16px 16px" or "50% 75%" etc.
Question: is there a way to position a background image then offset that ...
1
vote
1answer
333 views
CSS/Javascript How do I make this background-position movie in Firefox like it does in IE7+?
<script language="javascript" >
var speed=25; //speed
var num=0;
var photos = document.getElementById('head_image');
function scrollBG() {
num++;
...
0
votes
1answer
35 views
How to set background-image position above the element?
I have an element (a button) that i want to have 2 background images.
one is a gradient and i want the other to position above the button.
How do i do that?
Is there some way i can add something ...
0
votes
1answer
24 views
CSS min-height is fighting background-position
For the problematic behavior, try resizing the window of this web app. Thought the header and boxes stop being resized after a minimum dimension, the background image continues to position itself at ...