0
OK, 나는이 코드를 사용하고 있습니다 :JQuery와 온로드 플립 DIV
<script type="text/javascript">
$(function() {
$("#flipPad a:not(.revert)").bind("click",function() {
var $this = $(this);
$("#flipbox").flip({
direction: $this.attr("rel"),
color: $this.attr("rev"),
content: $this.attr("title"), //(new Date()).getTime(),
onBefore: function(){$(".revert").show()}
});
return false;
});
$(".revert").bind("click",function() {
$("#flipbox").revertFlip();
return false;
});
var changeMailTo = function() {
var mArr = ["@","smashup","luca",".it"];
$("#email").attr("href","mailto:"+mArr[2]+mArr[0]+mArr[1]+mArr[3]);
}
$(".downloadBtn").click(function() {
pageTracker._trackPageview("download_flip");
});
setTimeout(changeMailTo,500);
});
</script>
이 내가 flipPad 버튼을 클릭하면됩니다 무엇의 flipbox이 DEMO
을 되돌아 것은 지금 내가하고 싶은 것입니다 div를 넘겨 주지만 자동으로.
나는이 시도했지만 작동하지 않았다
<script>
$(document).ready(function() {
$("#flipbox").flip({
direction: $this.attr("rel"),
color: $this.attr("rev"),
content: $this.attr("title"), //(new Date()).getTime(),
onBefore: function(){$(".revert").show()}
});
});
</script>
확인해 = "BT는"REV = "#의 B0EB17"제목 = 당신을 위해 일한다 ''. $ 텍스트 2를. " –
을 음부터 속성 값 (방향, 색상, 내용)이 클릭 된 링크에서 왔을 때, 어떻게 페이지 하중에 지금 정의 할 것입니까? –