I wish to detect what media query is active - I'm using Bootjack, so hence I am using the default breakpoints
I expected to be able to use getComputedStyle()
to get hold of the value of the 'content' property in the example below - but I don't seem to get the syntax correct. I can happily get the value of an element - say the font-famly on the body, but not pseudo-elements...
Here's what I am doing:
Given this css..
/* tablets */
@media(min-width:768px){
body::after {
content: 'tablet';
display: none;
}
}
@media(min-width:992px){
body::after {
content: 'desktop';
display: none;
}
}
@media(min-width:1200px){
body::after {
content: 'large-screen';
display: none;
}
}
I have this in my dart file:
String activeMediaQuery = document.body.getComputedStyle('::after').getPropertyValue('content');
but activeMediaQuery is always empty.
I've tried ('after') and (':after') and anything else weird and wonderful but to no avail.
String activeMediaQuery = document.body.getComputedStyle().getPropertyValue('font-family');
sets the variable activeMediaQuery to the value of the font-family that I am using (not much use to me though!)
What should I be doing?
You can also subscribe to MediaQuery change events
for more details see https://github.com/bwu-dart/polymer_elements/blob/master/lib/polymer_media_query/polymer_media_query.dart
There is a bug in Dart and the workaround uses dart-js-interop.
This is the code from the polymer-media-query element. I don't know if the comments
not suppored in Dart yet
are still valid. It's a few months since I tried it.Here is an example page that shows how to use the element. https://github.com/bwu-dart/polymer_elements/blob/master/example/polymer_media_query.html
This worked for me with the CSS you provided in your question but only when the window was wider than 768 px. You might miss a rule with
max-width: 768px