本文介绍了jQuery background-position-x问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Jquery中执行background-position-x?
How to do background-position-x in Jquery ?
console.log($('.element').css('background-position-x'));
输出(an empty string)
console.log($('.element').css('background-position'));
输出0px 0px
我想做的是:
$(this).css('background-position-x', '-162px');
如何使其工作?
非常感谢您.
推荐答案
background-position-x
不是标准的CSS,并且并非在所有浏览器中均受支持.在> jQuery中的背景位置动画无法正常工作的情况下,查看解决方案Firefox .
background-position-x
is not standard css and is not supoprted in all browsers. Take a look at solution at Background Position animation in jQuery not working in Firefox.
这篇关于jQuery background-position-x问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!