使用javascript

时间:2017-06-03 03:40:00

标签: javascript jquery

您好我试图根据屏幕大小更改伪元素的样式,但我相信我的语法在某处错了。我谷歌问题,但无法找到确切的解决方案。下面是我的css -

.cBox{background-color: #efeff0; margin: 15px 0px -80px 0px;
display: inline-block;
margin-left: -8px;
margin-top: 55px;
position: relative;
width: 101%;}

.cBox:before{
border-bottom: 45px solid #efeff0;
border-left: 650px solid transparent;
border-right: 650px solid transparent;
content: "";
height: 0px;
left: 0;
position: absolute;
top: -45px;
width: 0px;}

Now the border left property of cBox:before should have half value of the screen size i.e. if screen size is 1300px, then border left should have a value of 650px(border-left:650px). below is my HTML-


 <body onload="myFunction()">
<div class="cBox"> 
<div style="text-align:center;">Some text here</div>
</div>
<script>
function myFunction(){
var x = window.getComputedStyle(document.querySelector('.cBox')
,':before').getPropertyValue('border-left');
if(window.outerWidth >=900) x[0].style.borderLeft = "screen.availWidth/2px solid transparent"; 
else {x[0].style.borderLeft = "screen.availWidth/2px solid transparent"; }
}
</script>
</body>

I know x[0].style.borderLeft syntax is not correct please suggest!

1 个答案:

答案 0 :(得分:0)

使用CSS媒体查询为不同的屏幕尺寸而不是JS设置样式。

<style>
    .cBox:before { border-left: 250px solid transparent; }

    @media(min-width: 900px) { 
        .cBox:before { border-left: 0 solid transparent; }
    }
</style>

参考:https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries

使用JS修改sudo元素的样式是不可能的。您可以将样式标签添加到头部:

<script>
if (calculatedWidth > 900) {
    document.styleSheets[0].addRule('.cBox:before', 'border-left: 0 solid transparent');
}
</script>