查看此网站和功能。如果单击颜色,则墙壁的颜色会动态变化。
如何执行此功能。 在此先感谢:)
答案 0 :(得分:1)
jQuery:
$( '.colour-1' ).on( 'click', function() {
$( 'div.foo').css( 'background-color', '#00CCFF' );
} );
$( '.colour-2' ).on( 'click', function() {
$( 'div.the-one-that-contains-the-img').css( 'background-color', '#999999' );
} );
HTML:
<div class="foo">
<img src="transparent-background-room-image.png" />
</div>