admin管理员组文章数量:1345078
I developed a website with a bunch of print media queries to align stuff when printing the page. when you go to the print mode on web browser, the queries works great. but i want apply/remove those @media print
queries on a regular web page without having to go into the printing mode.(by clicking a button) is there any way to achieve this?
I developed a website with a bunch of print media queries to align stuff when printing the page. when you go to the print mode on web browser, the queries works great. but i want apply/remove those @media print
queries on a regular web page without having to go into the printing mode.(by clicking a button) is there any way to achieve this?
- like a print preview? – Daniel A. White Commented May 6, 2016 at 20:23
- 1 Just remove the print media in the link attribute? – epascarello Commented May 6, 2016 at 20:24
- @epascarello what do you mean? – CoderKK Commented May 6, 2016 at 20:37
- @DanielA.White yes. but different from browsers print preview module. – CoderKK Commented May 6, 2016 at 20:37
- Make it a normal stylesheet to test and add it back when done. – epascarello Commented May 6, 2016 at 20:38
3 Answers
Reset to default 7In addition to Boldewyn's answer, if you have @media print
styles inside <style>
tags, you can replace them with @media screen
:
Array.prototype.forEach.call(document.getElementsByTagName('style'), function(style) {
style.innerText = style.innerText.replace(/@media print/gi, '@media screen');
});
See the demo.
To add to yezzz's answer: If you have the print CSS linked in the HTML like
<link rel="stylesheet" media="print" href="...">
you can remove the media
attribute to enable those styles everywhere, either on the server or with Javascript:
document.querySelector('[media="print"]').removeAttribute('media');
Note, that this doesn't work, if the statements in the print stylesheet are wrapped in a @media print {}
rule.
First thing that es to mind is use classes. Simple example to give you the general idea. If you had a button that toggles emulateprint
class on the body you could use eg. this css:
body {
color: black;
}
body.emulateprint {
/* put same styles as @media print in here */
color: red;
}
@media print {
body {
color:red;
}
}
本文标签: javascriptIs there a way to enable media print css to a normal viewStack Overflow
版权声明:本文标题:javascript - Is there a way to enable media print css to a normal view? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743749115a2532316.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论