gnina-torch / html /ligand.html
Rocco Meli
shorten 3dmol box
16c0ff2
raw
history blame contribute delete
984 Bytes
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<style>
.mol-container {
width: 100%;
height: 500px;
position: relative;
}
.mol-container select {
background-image: None;
}
</style>
<script src="https://3Dmol.csb.pitt.edu/build/3Dmol-min.js"></script>
</head>
<body>
<div id="container" class="mol-container"></div>
<script>
let sdf = `%%%SDF%%%`;
$(document).ready(function () {
let element = $("#container");
let config = { backgroundColor: "white" };
let viewer = $3Dmol.createViewer(element, config);
viewer.addModel(sdf, "sdf");
viewer.getModel(0).setStyle({}, { "stick": { "colorscheme": "purpleCarbon" } });
viewer.zoomTo();
viewer.render();
viewer.zoom(0.8, 2000);
})
</script>
</body>
</html>