Mootools公司-资产。图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mootools公司-资产。图像相关的知识,希望对你有一定的参考价值。

This snippet assumes that you have a container `div` with an id of "images".

It also assumes that each img element inside your container div has the CSS property `visibility: hidden`
  1. var loadImages = function(strSelector)
  2. {
  3. var arrImages = $(strSelector).getElements('img');
  4. var arrSources = [];
  5. arrImages.each(function(eleImage) {
  6. arrSources.push(eleImage.get('src'));
  7. });
  8.  
  9. new Asset.images(arrSources, {
  10. onComplete: function() {
  11. var objChain = new Chain;
  12. arrImages.each(function(eleImage) {
  13. objChain.chain(function() {
  14. eleImage.set('tween', {
  15. duration: 300
  16. }).tween('opacity', 0, 1);
  17. this.callChain.delay(100, this);
  18. });
  19. });
  20. objChain.callChain();
  21. }
  22. } );
  23. }
  24.  
  25. window.addEvent(
  26. 'domready',
  27. function()
  28. {
  29. loadImages( $('images') );
  30. }
  31. );

以上是关于Mootools公司-资产。图像的主要内容,如果未能解决你的问题,请参考以下文章

MooTools图像滚动

JavaScript MooTools图像翻转

JavaScript [mootools]从点击的链接图像中删除onfocus虚线轮廓

Mootools公司:Fx.滚动将页面移到顶部

导致资产预编译在heroku部署上失败的代码片段

Mootools教程资源