移动设备上的样式不正确

时间:2016-07-04 15:36:36

标签: html css

我几乎完成了我的新网站。一切都是通过数据库最终连接并完美运行完成的,网站上唯一失败的是移动设备上的样式。无论我尝试什么背景移动,它在第一页上显示背景颜色,这是我不想要的。

我需要您的具体帮助,以确保背景不会移动,并且背景颜色不会在第一页上直接显示。谢谢! :)

在我的 unique_ptr<Mesh>

#ifndef _MODEL_H
#define _MODEL_H

#include "Mesh.h"
#include <vector>

#include <assimp/Importer.hpp>
#include <assimp/scene.h>
#include <assimp/postprocess.h>

class Model
{
    public:

        std::vector<Mesh> meshes;
        std::string directory;
        void loadModel(std::string path);
        void processNode(aiNode* node, const aiScene* scene);
        Mesh processMesh(aiMesh* mesh, const aiScene* scene);
};

#endif


#ifndef _MESH_H
#define _MESH_H

#include "Vec3d.h"
#include "Ray.h"
#include <vector>

class Mesh
{
    protected:
        unsigned int numVertices, numFaces;
        std::vector<unsigned int> vertexIndex;
        std::vector<Vec3d> verts;
        std::vector<Vec3d> vertexNormals;
        Vec3d cl;

    public:

        Mesh(unsigned int &_numVertices, unsigned int &_numFaces, std::vector<unsigned int> &_vertexIndex, std::vector<Vec3d> &_verts, std::vector<Vec3d> &_vertexNormals);
        bool intersect(Ray &r, double &t, double &u, double &v);
        inline const Vec3d getCL(){ return cl; }
};

#endif

我的Css代码

<head>

0 个答案:

没有答案