<?xml version="1.0" encoding="UTF-8" ?> <Module> <ModulePrefs title="fade example" /> <Content type="html"> <![CDATA[ <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> <script> $(document).ready(function(){ $(document).ready(function(){ $(".fade").hide(0).delay(600).fadeIn(6000) }); }); </script> </head> <body> <div class="fade"> <p>Hello, world!</p> </div> </body> </html> ]]> </Content> </Module> |