- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在寻找一种显示 GLSL Sandbox 的 Web-gl 着色器的方法作为 html 页面的背景,但是似乎没有一个简单的可嵌入 API。我怎样才能做到这一点?
是否可以输入 this Shader在 html 页面上? :
precision highp float;
uniform float time;
uniform vec2 resolution;
#define TWO_PI 6.283185
#define NUMBALLS 30.0
float d = -TWO_PI/36.0;
void main( void ) {
vec2 p = (2.0*gl_FragCoord.xy - resolution)/min(resolution.x, resolution.y);
vec3 c = vec3(0);
for(float i = 0.0; i < NUMBALLS; i++) {
float t = TWO_PI * i/NUMBALLS + time;
float x = cos(t);
float y = sin(3.0 * t + d);
vec2 q = 0.8*vec2(x, y);
c += 0.015/distance(p, q) * vec3(0.9 * abs(x), 0, abs(y));
}
gl_FragColor = vec4(c, 1.0);
}
最佳答案
This answer covers canvas as a background .
This answer covers using a glslsandbox shader in three.js .
否则,您只需要使用 glslsandbox 提供的着色器绘制全屏四边形,提供 glslsandbox 提供的各种制服。原代码为here
这是来自 glslshadertoy 的着色器片段
"use strict";
const vs = `
attribute vec4 position;
void main() {
gl_Position = position;
}
`;
// From glslsandbox.com
const fs = `
precision highp float;
uniform float time;
uniform vec2 resolution;
#define TWO_PI radians(360.0)
#define NUMBALLS 30.0
float d = -TWO_PI/36.0;
void main( void ) {
vec2 p = (2.0*gl_FragCoord.xy - resolution)/min(resolution.x, resolution.y);
vec3 c = vec3(0);
for(float i = 0.0; i < NUMBALLS; i++) {
float t = TWO_PI * i/NUMBALLS + time;
float x = cos(t);
float y = sin(3.0 * t + d);
vec2 q = 0.8*vec2(x, y);
c += 0.015/distance(p, q) * vec3(0.9 * abs(x), 0, abs(y));
}
gl_FragColor = vec4(c, 1.0);
}
`;
const gl = document.querySelector("canvas").getContext("webgl");
// compiles shaders, links program, looks up locations.
const programInfo = twgl.createProgramInfo(gl, [vs, fs]);
var arrays = {
position: [-1, -1, 0, 1, -1, 0, -1, 1, 0, -1, 1, 0, 1, -1, 0, 1, 1, 0],
};
// calls gl.createBuffer, gl.bindBuffer, gl.bufferData for each array
var bufferInfo = twgl.createBufferInfoFromArrays(gl, arrays);
function render(time) {
twgl.resizeCanvasToDisplaySize(gl.canvas);
gl.viewport(0, 0, gl.canvas.width, gl.canvas.height);
const uniforms = {
time: time * 0.001,
resolution: [gl.canvas.width, gl.canvas.height],
};
gl.useProgram(programInfo.program);
// calls gl.bindBuffer, gl.enableVertexAttribArray, gl.vertexAttribPointer
twgl.setBuffersAndAttributes(gl, programInfo, bufferInfo);
// calls gl.uniform
twgl.setUniforms(programInfo, uniforms);
// calls gl.drawArrays or gl.drawElements
twgl.drawBufferInfo(gl, bufferInfo);
requestAnimationFrame(render);
}
requestAnimationFrame(render);
body {
margin: 0;
color: white;
font-size: 20pt;
}
canvas {
width: 100vw;
height: 100vh;
z-index: -1;
display: absolute;
position: fixed;
top: 0;
left: 0;
}
#content {
margin: .5em;
}
<script src="https://twgljs.org/dist/3.x/twgl.min.js"></script>
<canvas></canvas>
<div id="content">
<pre>
Let's
make
something
long
enough
that
we
need
to
scroll
to
show
that
this
works
as
a
background
even
if
the
content
is
longer
than
the
window
size
</pre>
</div>
关于javascript - 在 html 页面上嵌入 Web-GL 沙箱的效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44478491/
我正在使用 Visual Studio 2010。 我正在尝试在 OpenGL 中编写简单的 Camera 类。 我需要在 Camera.h 中包含 gl/gl.h gl/gl.h 已经包含在 mai
这个问题适用于了解 MapBox GL JS 内部结构的人。 我正在使用 MapBox GL JS 渲染多达 40,000 个多边形的地理 map ,每个多边形的颜色都基于该多边形的“所有者”。每个所
我想知道3D建筑物的“填充颜色”是否可以根据某些事件动态更改,例如将鼠标悬停在建筑物上时的mouseMoveEvent,突出显示3D建筑物。 最佳答案 试试这个 map.on('load', func
我正在使用 mapbox-gl 并从 osm2vectortiles.org 下载矢量切片 我想让 map 仅在已知多边形内可见,但找不到任何方法来实现这一点。 我可以想象几种解决这个问题的方法,但每
在探索javascript的过程中,我遇到了一个很莫名其妙的问题。序言是:我将不同 mime 类型的图像(主要是 pngs/jpgs)转换为具有 ImageBitmap 接口(interface)的位
我一直在使用行程图层可视化行程数据,并且尝试在每条行程线的开头放置一个图标。是否可以让多个图标随时间改变位置、出现和消失? Example of what I'm trying to do (red
我有一个 map 应用程序,它使用 Mapbox.com 来提供英国邮政编码边界的矢量切片。边界文件很大,不适合使用 TopoJSON 之类的工具进行下载。这很好用。 我还使用数据驱动的样式来格式化
将鼠标悬停在一个 3D 建筑上时,如何突出显示它?像 OSM 建筑物突出显示功能。 mapbox street v7 建筑图层特征属性好像很少,只包括: 拉伸(stretch) 高度 最小高度 类型
有没有办法隐藏/删除或禁用控件,例如 mapbox-gl-draw 中的控件? 我添加绘制控件如下 draw = mapboxgl.Draw({ drawing: true,
这可能非常简单,但我找不到如何在 deck.gl 的标签下方添加新层。它在底层使用 Mapbox GL JS。对于 mapbox gl,解释为 here . 我还在他们的文档中搜索了 z-index
我正在寻找一种方法,允许我像 Mapbox JS 一样为我的 map 创建一个简单的自定义标记。 深入浏览了网络,似乎没有明显或非常直接的方法来实现这一目标。我猜这是一个被错过的功能。 尝试过使用Ma
接下来的教程向我展示了以下代码: ... void update() { glClear(GL_COLOR_BUFFER_BIT); glBegin(GL_TRIANGLES);
我正在寻找一种方法,允许我像 Mapbox JS 一样为我的 map 创建一个简单的自定义标记。 深入浏览了网络,似乎没有明显或非常直接的方法来实现这一目标。我猜这是一个被错过的功能。 尝试过使用Ma
我想在交互式 map 上显示一个圆圈的轮廓(无填充)但是,mapbox-gl-js 中的绘制选项似乎仅限于填充。 https://www.mapbox.com/mapbox-gl-style-spec
我在 kepler.gl 中工作并从数据库加载数据。如果数据库更新,我希望能够动态更新数据集。有没有办法向数据集添加一行并更新 map ? 我已经尝试删除数据集(使用 removeDataset)并将
如何在 mapbox-gl 中为图层文本字段添加背景颜色 .. 或者如何完成以便文本字段上有背景框 map.addLayer({ "id": "markers", "type": "s
我正在尝试使用 mapbox-gl 创建等值线图。在示例等值线 map 中,看起来他们根据要素的属性设置了要素的油漆填充颜色。有没有办法通过访问 map 来设置颜色? 即。我在称为 id 的功能属性中
我想根据最近的草皮更改 map 点击时的图标大小。我如何做到这一点? nearestBuilding.properties['icon-size'] = 0.2; 不起作用。 var retail =
我正在尝试在 MapBox GL JS 中聚类自定义标记,但我不知道如何将自定义标记图像从 url 获取到符号层?它要么不起作用,要么根本没有标记出现。它是如何完成的?我需要知道如何使用带有符号层的
寻找一种使用 Mapbox GL JS 获取 map 中心当前坐标的方法,就像在 Mapbox Studio 上一样(见下文) Mapbox Studio Screenshot 谢谢 最佳答案 Map
我是一名优秀的程序员,十分优秀!