在我的電腦上它工作正常,但只要我上傳它,它停止工作,我不知道爲什麼。看看鏈接,看看它會發生災難性的錯誤。代碼將無法在服務器上工作?
http://www.coachella.eu/
我不明白爲什麼它不會工作,因爲它來自這裏; https://css-tricks.com/seamless-responsive-photo-grid/
<html>
<head>
<title>Coachella - Images</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<link rel="stylesheet" href="stylesheets/style.css">
</head>
<body>
<?php include_once("analyticstracking.php") ?>
<section id="photos">
<img src="images/2015/1.jpg" alt="Hipster Girl">
<img src="images/2015/2.jpg" alt="Beyonce">
<img src="images/2015/3.jpg" alt="Azealia banks">
<img src="images/2015/4.jpg" alt="Hipster">
<img src="images/2015/5.jpg" alt="Girlfriends">
<img src="images/2015/6.jpg" alt="Fake Tan">
<img src="images/2015/7.jpg" alt="Paris Hilton?">
<img src="images/2015/8.jpg" alt="Some C List Celebrity">
<img src="images/2015/9.jpg" alt="Group of Californian girls">
<img src="images/2015/10.jpg" alt="Sunset">
<img src="images/2015/11.jpg" alt="Pouting & Sun Tans">
<img src="images/2015/12.jpg" alt="Giant Spaceman">
<img src="images/2015/13.jpg" alt="Girl with American Flag">
<img src="images/2015/14.jpg" alt="4 tanned girls, one white one">
<img src="images/2015/15.jpg" alt="Girls in white dresses">
<img src="images/2015/16.jpg" alt="Showing skin and american flag">
<img src="images/2015/18.jpg" alt="Cute couple">
<img src="images/2015/19.jpg" alt="The crowd">
<img src="images/2015/20.jpg" alt="Big Wheel">
<img src="images/2015/21.jpg" alt="Girls eating">
<img src="images/2015/22.jpg" alt="Grassy field">
<img src="images/2015/24.jpg" alt="Packed crowd">
<img src="images/2015/25.jpg" alt="Couples holding hands">
<img src="images/2015/26.jpg" alt="Over Accessorised">
<img src="images/2015/27.jpg" alt="Kardashian Girls">
<img src="images/2015/28.jpg" alt="One of the Kardashians">
<img src="images/2015/30.jpg" alt="Girl with open dress">
<img src="images/2015/31.jpg" alt="Breaking Bad's Aaron Paul">
<img src="images/2015/33.jpg" alt="Drone shot of crowd">
<img src="images/2015/34.jpg" alt="Paris Hilton">
</section>
</body>
CSS正在我的電腦上也沒關係!
body {
padding: 0px;
@apply(--layout-fullbleed);
@apply(--paper-font-common-base);
}
#photos {
/* Prevent vertical gaps */
line-height: 0;
-webkit-column-count: 5;
-webkit-column-gap: 0px;
-moz-column-count: 5;
-moz-column-gap: 0px;
column-count: 5;
column-gap: 0px;
}
#photos img {
/* Just in case there are inline attributes */
width: 100% !important;
height: auto !important;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 1200px) {
#photos {
-moz-column-count: 5;
-webkit-column-count: 5;
column-count: 5;
}
#photos img {
/* Just in case there are inline attributes */
max-width: width: 100% !important;
}
}
@media (max-width: 1000px) {
#photos {
-moz-column-count: 3;
-webkit-column-count: 3;
column-count: 3;
}
}
@media (max-width: 800px) {
#photos {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
}
@media (max-width: 400px) {
#photos {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
編輯:這些文件是在服務器上100%,我刪除了它們,並重新上傳了所有!不知道爲什麼它沒有找到它們,因爲這些鏈接直接指向文件。
你上傳了圖片嗎? –