2

我是新手。如何使用 Mootools 更改我的 background-image css 属性?

4

3 回答 3

7

例如,在页面加载时:

<div id="yourElement"></div>

<script type="text/javascript">
window.addEvent('domready', function() {
    $('yourElement').setStyle('background-image', 'url(path/to/your/image)');
});
</script>
于 2009-11-16T15:56:47.030 回答
2

Element.Style 的 MooTools 文档应该能够为您回答这个问题。

于 2009-11-16T15:13:10.283 回答
1
window.addEvents({
  // fire when the DOM is loaded
  domready: function(){
    // path to the image
    var pathToBackgroundImage = '/path/to/the/image.jpg';
    // set the background-image
    $(document.body).setStyle('background-image','url(' + pathToBackgroundImage + ')');
  }
});

如果您决定要淡入图像,则需要采取截然不同的方法。

于 2009-11-16T17:28:44.847 回答