묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
맘에드는 게시글을 이메일로 바로 보내기할라면 어찌해야할까요?
2009.10.10 22:35
게시글을 보면... 아래쪽에 이 글을 ...프린트도하고 추천도하고..그러는데... 이메일로 보내기..이 기능이 없는것같습니다.
맘에드는 게시글을 찾았을때 친구한테 보내구 싶으면 바로 이메일을 보낼수있는 기능이 추가되면 좋을텐데요...
뭐 주소 복사해서 이메일 창 새로 열구 하면 되겠지만.. 해당 게시글에서 바로 처리하면 더 좋겠습니다.
미리 감사합니다.
댓글 1
-
초등학생5학년
2009.10.10 22:40
-
시니시즘
2009.10.11 02:37
뭐하시는 거죠? -
왕초보408
2009.10.14 08:29
XE에 있는걸 가지고 해보면 좋겠습니다만...
미리보기 : http://www.hankyung.com/news/app/newsview.php?aid=2008011348331
<head>와 </head>사이에 아래소스삽입
<script type="text/javascript">
function Floating ( FloatingObj , MarginY , TopLimit , Percentage , setTime ) {
this.FloatingObj = FloatingObj;
this.MarginY = (MarginY) ? MarginY : 400; // top 위치
this.TopLimit = (TopLimit) ? TopLimit : 0;
this.Percentage = (Percentage) ? Percentage : 20;
this.setTime = (setTime) ? setTime : 10;
this.FloatingObj.style.position = "absolute";
this.Body = null;
this.setTimeOut = null;
this.Run();
}
Floating.prototype.Run = function () {
this.Body = document.documentElement.scrollTop>document.body.scrollTop ? document.documentElement : document.body;
var This = this;
var FloatingObjTop = (this.FloatingObj.style.top) ? parseInt(this.FloatingObj.style.top,10) : this.FloatingObj.offsetTop;
var DocTop = this.Body.scrollTop + this.MarginY;
var MoveY = Math.abs(FloatingObjTop - DocTop);
if ( DocTop > this.TopLimit ) {
if ( FloatingObjTop < DocTop ) {
this.FloatingObj.style.top = FloatingObjTop + Math.ceil( MoveY/this.Percentage ) + "px" ;
} else {
this.FloatingObj.style.top = DocTop + "px" ;
}
} else {
this.FloatingObj.style.top = this.TopLimit + "px" ;
}
window.clearTimeout(this.setTimeOut);
this.setTimeOut = window.setTimeout( function () { This.Run(); } , this.setTime );
}
</script>
<body>와 </body> 사이 원하는 위치에 아래소스 삽입
<div id="cTop" style="position:absolute; left:823px; z-index:1;">
<a href="./#"><img src="./이미지경로" alt="위로가기" /></a>
</div>
<script type="text/javascript">
new Floating(document.getElementById('cTop'),0,700,10,10);
</script>
</div>