Ⅰ css滑鼠點擊項背景圖片更改
你如果只是實現這個效果的話,就沒必要寫js,那樣會載入網站的運營的速度的,可以直接通過Css來改變其效果!也就相當於hover的效果,通過onclick換掉其css樣式即可!
Ⅱ Html按鈕點擊後會變換背景圖片
這種更換背景的問題 一般來說 是由於 後台伺服器的響應 和你前端之間的不是實時傳送有一定關系 所以 這個不是大問題
Ⅲ jquery怎麼實現點擊一個元素更換背景圖片,連續點擊永遠在2張圖片之間更換
實現的方法和操作步驟如下:
1、首先,打開html編輯器,創建一個新的html文件,例如index.html,然後引入jquery,如下圖所示。
Ⅳ html中,點擊div,使其更換背景圖片,兩張圖片來回切換
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8">
<title>無標題文檔</title>
</head>
<body>
<scriptsrc="模板/js/jquery-1.8.0.js"></script>
<script>
$(function(){
$('#div1').toggle(
function(){
$(this).css('background','blue')
},
function(){
$(this).css('background','red')
}
)
})
</script>
<divstyle="background:red;width:50px;height:50px"id='div1'></div>
</body>
</html>
Ⅳ html中如何滑鼠點擊更換背景圖片
html中滑鼠點擊更換背景圖片的方法:
1、html代碼:
<div id="menuWrapper" class="menuWrapper bg1">
<ul class="menu" id="menu">
<li class="bg1" style="background-position:0 0;">
<a id="bg1" href="#">邁瑞寶</a>
<ul class="sub1" style="background-position:0 0;">
<li><a href="#">報價:11.99-23.69萬</a></li>
<li><a href="#">車身結構:三箱</a></li>
<li><a href="#">油耗:8.3-12.0L</a></li>
</ul>
</li>
<li class="bg1" style="background-position:-266px 0px;">
<a id="bg2" href="#">索納塔8</a>
<ul class="sub2" style="background-position:-266px 0;">
<li><a href="#">報價:13.39-22.59萬</a></li>
<li><a href="#">車身結構:三箱</a></li>
<li><a href="#">油耗:9.0-12.0L</a></li>
</ul>
</li>
<li class="last bg1" style="background-position:-532px 0px;">
<a id="bg3" href="#">K5</a>
<ul class="sub3" style="background-position:-266px 0;">
<li><a href="#">報價:10.88-25.58萬</a></li>
<li><a href="#">車身結構:三箱</a></li>
<li><a href="#">油耗:8.4-13.0L</a></li>
</ul>
</li>
</ul>
</div>
2、css代碼:
ul.menu > li > a{
float:left;
width:265px;
height:50px;
margin-top:450px;
text-align:center;
line-height:50px;
color:#ddd;
background-color:#333;
letter-spacing:1px;
cursor:pointer;
text-decoration:none;
text-shadow:0px 0px 1px #fff;
}
ul.menu > li ul{
list-style:none;
float:left;
margin-top:-180px;
width:100%;
height:110px;
padding-top:20px;
background-repeat:no-repeat;
background-color:transparent;
}
ul.menu > li ul li{
display:none;
}
ul.menu > li ul.sub1 {
background-image: url('../img/bg1sub.png');
}
ul.menu > li ul.sub2 {
background-image: url('../img/bg2sub.png');
}
ul.menu > li ul.sub3{
background-image:url(../img/bg3sub.png);
}
ul.menu > li ul li a{
color:#fff;
text-decoration:none;
line-height:30px;
margin-left:20px;
text-shadow:1px 1px 1px #444;
font-size:11px;
}
ul.menu > li ul li a:hover{
border-bottom:1px dotted #fff;
}
ul.menu > li ul.sub1 li{
display:block;
}
3、js代碼:
if (!document.defaultView || !document.defaultView.getComputedStyle) { // IE6-IE8
var oldCurCSS = jQuery.curCSS;
jQuery.curCSS = function (elem, name, force) {
if (name === 'background-position') {
name = 'backgroundPosition';
}
if (name !== 'backgroundPosition' || !elem.currentStyle || elem.currentStyle[name]) {
return oldCurCSS.apply(this, arguments);
}
var style = elem.style;
if (!force && style && style[name]) {
return style[name];
}
return oldCurCSS(elem, 'backgroundPositionX', force) + ' ' + oldCurCSS(elem, 'backgroundPositionY', force);
};
}
var oldAnim = $.fn.animate;
$.fn.animate = function (prop) {
if ('background-position' in prop) {
prop.backgroundPosition = prop['background-position'];
delete prop['background-position'];
}
if ('backgroundPosition' in prop) {
prop.backgroundPosition = '(' + prop.backgroundPosition;
}
return oldAnim.apply(this, arguments);
};
function toArray(strg) {
strg = strg.replace(/left|top/g, '0px');
strg = strg.replace(/right|bottom/g, '100%');
strg = strg.replace(/([0-9.]+)(s|)|$)/g, "$1px$2");
var res = strg.match(/(-?[0-9.]+)(px|\%|em|pt)s(-?[0-9.]+)(px|\%|em|pt)/);
return [parseFloat(res[1], 10), res[2], parseFloat(res[3], 10), res[4]];
}
4、實現效果
Ⅵ jquery點擊來回切換背景圖片的background-position
<span class="w-open" onclick="switch_pic(this);"></span>
你應該還有一個class="w-close"吧?表示上門取車的背景圖樣式。
functionswitch_pic(this){
if($(this).attr('class')=='w-open'){
$(this).attr('class','w-close');
}else{
$(this).attr('class','w-open');
}
}
Ⅶ jquery點擊改變背景圖片
css("background-image","url(image[n])");
問題出在這里了吧!
你這么寫不相當於 background-image:url(image[n]) 了么?
這樣試試:
$(".slider_image").css("background-image","url("+image[n]+")");
Ⅷ css按鈕:ACTIVE點擊切換背景圖片
<!DOCTYPEhtml>
<html>
<head>
<style>
#btn{background:red;}
#btn:hover{background:blue;}
</style>
</head>
<body>
<inputid="btn"type="button"/>
</body>
</html>
經驗證是可以的,或許是你的圖片路徑不對,不過ie6不支持偽類:hover屬性,所以如果要兼容ie6就用js或者,用a標簽來代替吧
Ⅸ js點擊切換背景圖片
style.backgroundImage = ='url("??????")'
判斷換成這個
style.backgroundImage ='url("??????")'
賦值換這個
因為你加的url裡面的 不是string 不合法,js自動給你加上了「」
Ⅹ 點擊div背景圖片切換(兩張圖片的切換),要用js解決
自己准備圖片1.jpg和圖片2.jpg。
<html>
<style>
div{
width:300px;
height:300px;
border:1px solid black;
background-image:url(1.jpg);
}
</style>
<script>
function changeImg(){
var div = document.getElementById("test");
if(div.style.backgroundImage == "url(1.jpg)"){
div.style.backgroundImage = "url(2.jpg)";
}else{
div.style.backgroundImage = "url(1.jpg)";
}
}
</script>
<body>
<div id="test" onclick="changeImg()">
</div>
</body>
</html>