admin管理员组文章数量:1340750
I am trying to achieve the following:
- I have a server-side script that generates CSS code depending on GET parameters
- On user request a JS should now do the following
- Load a new CSS file
- When loading is done, fade to the newly loaded style
Problem here is the last step.
It is no problem to add a new CSS file to the DOM, but how do I know when the browser finished loading the file? I cannot start animations using the newly loaded styles until the file is actually loaded.
Alternatively: Is it possible to load a CSS file using Async Requests, and inject the CSS code into the DOM using Javascript without parsing it by hand?
Thank you very much!
Dennis
I am trying to achieve the following:
- I have a server-side script that generates CSS code depending on GET parameters
- On user request a JS should now do the following
- Load a new CSS file
- When loading is done, fade to the newly loaded style
Problem here is the last step.
It is no problem to add a new CSS file to the DOM, but how do I know when the browser finished loading the file? I cannot start animations using the newly loaded styles until the file is actually loaded.
Alternatively: Is it possible to load a CSS file using Async Requests, and inject the CSS code into the DOM using Javascript without parsing it by hand?
Thank you very much!
Dennis
Share Improve this question asked Mar 17, 2011 at 9:26 Dennis KempinDennis Kempin 1,1482 gold badges13 silver badges19 bronze badges3 Answers
Reset to default 8I know this question is quite old, but in case anyone Googles this, here is a function that lets you define a callback to let you know when the stylesheet is loaded:
var css = function(url, callback) {
var head = document.getElementsByTagName('head')[0];
var cssnode = document.createElement('link');
cssnode.type = 'text/css';
cssnode.rel = 'stylesheet';
cssnode.href = url;
cssnode.onreadystatechange = callback;
cssnode.onload = callback;
head.appendChild(cssnode);
}
there are a nice library for this kind of filters...
maybe you can give that a try:
Yep Nope
Yepnope is an asynchronous conditional resource loader that's super-fast, and allows you to load only the scripts that your users need.
function loadjscssfile(filename, filetype){
if (filetype=="js"){ //if filename is a external JavaScript file
var fileref=document.createElement('script')
fileref.setAttribute("type","text/javascript")
fileref.setAttribute("src", filename)
}
else if (filetype=="css"){ //if filename is an external CSS file
var fileref=document.createElement("link")
fileref.setAttribute("rel", "stylesheet")
fileref.setAttribute("type", "text/css")
fileref.setAttribute("href", filename)
}
if (typeof fileref!="undefined")
document.getElementsByTagName("head")[0].appendChild(fileref)
}
loadjscssfile("myscript.js", "js") //dynamically load and add this .js file
loadjscssfile("javascript.php", "js") //dynamically load "javascript.php" as a JavaScript file
loadjscssfile("mystyle.css", "css") ////dynamically load and add this .css file
本文标签: javascriptProgrammatically load CSS using JSStack Overflow
版权声明:本文标题:javascript - Programmatically load CSS using JS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743632822a2513400.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论