gpt4 book ai didi

javascript - 我想根据设备显示不同的图像

转载 作者:行者123 更新时间:2023-11-27 23:35:14 24 4
gpt4 key购买 nike

我在我的元素中使用两个不同的图像作为背景,因为它们都有不同的设计和桌面图像在移动设备上看起来很奇怪。所以是否可以根据移动设备显示 BG 图像。这是我创建的演示 https://codeslide.in/contact .

我正在使用 codeigniter 框架。下面是代码,因为我在 css 中使用了两个图像但没有工作。

// Step 3 - Instilize the plugin by #id selector
VANTA.BIRDS({
el: "body",
colorMode: "varianceGradient",
wingSpan: 23.00,
speedLimit: 8.00,
separation: 60.00,
alignment: 35.00,
cohesion: 24.00,
backgroundAlpha: 0.36,
}})
body {
background-image: url("http://www.sclance.com/backgrounds/svg-background-image/svg-background-image_2162863.jpg");
}
@media only screen and (max-width: 600px) {
body {
background-image: url("https://images.unsplash.com/photo-1527335480088-278dbeec0ad5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80");
}
}
}
}
 <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/100/three.min.js"></script>
<script src="https://www.vantajs.com/dist/vanta.birds.min.js"></script>
<div class="body">

最佳答案

Use media query for this i have write some code for you, you can use this, if i am right..

body {
background-image: url("http://www.sclance.com/backgrounds/svg-background-image/svg-background-image_2162863.jpg");
}


/** For Mobile Device landscape and portrait view **/

@media (max-width:767px){
body {
background-image: url("https://images.unsplash.com/photo-1527335480088-278dbeec0ad5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80");
}

}

/** For I pad portrait view**/

@media (min-width:768px) and (max-width:991px) {
body {
background-image: url("https://i0.wp.com/www.wwhf.org/wp-content/uploads/2014/04/bokeh-cover-bg.jpg?ssl=1");
}

}

/** For I pad landscape view**/

@media (min-width:992px) and (max-width:1024px) {
body {
background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSI3Elr_JO2Y8pkoTb0QhVw91qcUOwhWrNlPX3icMrLqylfMk8u");
}

}
<body>
some textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome textsome text

</body>

关于javascript - 我想根据设备显示不同的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57271181/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com