Skip to content

Instantly share code, notes, and snippets.

@hiroosak
Last active August 29, 2015 14:04
Show Gist options
  • Save hiroosak/51018c50462219373e7d to your computer and use it in GitHub Desktop.
Save hiroosak/51018c50462219373e7d to your computer and use it in GitHub Desktop.
画像表紙テスト
<!doctype html>
<html>
<head>
<title>-</title>
<style>
body {
overflow: hidden;
margin: 0;
padding: 0;
position: absolute;
}
img {
position: relative;
}
p {
position: relative;
color: #428;
top: 400;
z-index: 1000;
}
</style>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript">
$(function() {
var sw = $(window).width();
var sh = $(window).height();
var imgElm = $('img.cover');
var iw = imgElm.width();
var ih = imgElm.height();
if (sw > sh) {
imgElm.css('width', sw);
ih = imgElm.height();
var margin = (ih - sh) / 2;
imgElm.css('top', (-1) * margin);
} else {
imgElm.css('height', $(window).height());
}
});
</script>
</head>
<body>
<img src="prof.jpg" class='cover' alt="">
<p>あいうえお</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment