js问题
This commit is contained in:
parent
0bbdf85491
commit
42814feab8
|
@ -34,18 +34,6 @@
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
scrollPic();
|
scrollPic();
|
||||||
$(".nav-element").mouseover(function(){
|
|
||||||
$(this).next().show();
|
|
||||||
});
|
|
||||||
$(".sn-grey-opacity").mouseover(function(){
|
|
||||||
$(this).show();
|
|
||||||
});
|
|
||||||
$(".nav-element").mouseout(function(){
|
|
||||||
$(this).next().hide();
|
|
||||||
});
|
|
||||||
$(".sn-grey-opacity").mouseout(function(){
|
|
||||||
$(this).hide();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
function scrollPic() {
|
function scrollPic() {
|
||||||
var scrollPic = new ScrollPic();
|
var scrollPic = new ScrollPic();
|
||||||
|
@ -68,27 +56,6 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<!--add by huang-->
|
<!--add by huang-->
|
||||||
<script type="text/javascript">
|
|
||||||
function org_new_files_upload()
|
|
||||||
{
|
|
||||||
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'files/upload_org_new_files',:locals => {:org => @organization, :org_attachment_type => 0}) %>');
|
|
||||||
showModal('ajax-modal', '513px');
|
|
||||||
$('#ajax-modal').siblings().remove();
|
|
||||||
$('#ajax-modal').before("<a href='javascript:void(0)' onclick='hideModal()' style='margin-left: 480px;'><img src='/images/bid/close.png' width='26px' height='26px' /></a>");
|
|
||||||
$('#ajax-modal').parent().css("top","40%").css("left","36%").css("border","3px solid #269ac9");
|
|
||||||
$('#ajax-modal').parent().addClass("popbox_polls");
|
|
||||||
}
|
|
||||||
|
|
||||||
function org_new_files_banner_upload()
|
|
||||||
{
|
|
||||||
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'files/upload_org_new_files_banner',:locals => {:org => @organization, :org_attachment_type => 1}) %>');
|
|
||||||
showModal('ajax-modal', '513px');
|
|
||||||
$('#ajax-modal').siblings().remove();
|
|
||||||
$('#ajax-modal').before("<a href='javascript:void(0)' onclick='hideModal()' style='margin-left: 480px;'><img src='/images/bid/close.png' width='26px' height='26px' /></a>");
|
|
||||||
$('#ajax-modal').parent().css("top","40%").css("left","36%").css("border","3px solid #269ac9");
|
|
||||||
$('#ajax-modal').parent().addClass("popbox_polls");
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<body onload="prettyPrint();">
|
<body onload="prettyPrint();">
|
||||||
<!--内容开始-->
|
<!--内容开始-->
|
||||||
<header>
|
<header>
|
||||||
|
@ -219,3 +186,41 @@
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(".nav-element").mouseover(function(){
|
||||||
|
$(this).next().show();
|
||||||
|
});
|
||||||
|
$(".sn-grey-opacity").mouseover(function(){
|
||||||
|
$(this).show();
|
||||||
|
});
|
||||||
|
$(".nav-element").mouseout(function(){
|
||||||
|
$(this).next().hide();
|
||||||
|
});
|
||||||
|
$(".sn-grey-opacity").mouseout(function(){
|
||||||
|
$(this).hide();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!--add by huang-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
function org_new_files_upload()
|
||||||
|
{
|
||||||
|
alert("test");
|
||||||
|
$('#ajax-modal').html('');
|
||||||
|
showModal('ajax-modal', '513px');
|
||||||
|
$('#ajax-modal').siblings().remove();
|
||||||
|
$('#ajax-modal').before("<a href='javascript:void(0)' onclick='hideModal()' style='margin-left: 480px;'><img src='/images/bid/close.png' width='26px' height='26px' /></a>");
|
||||||
|
$('#ajax-modal').parent().css("top","40%").css("left","36%").css("border","3px solid #269ac9");
|
||||||
|
$('#ajax-modal').parent().addClass("popbox_polls");
|
||||||
|
}
|
||||||
|
|
||||||
|
function org_new_files_banner_upload()
|
||||||
|
{
|
||||||
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'files/upload_org_new_files_banner',:locals => {:org => @organization, :org_attachment_type => 1}) %>');
|
||||||
|
showModal('ajax-modal', '513px');
|
||||||
|
$('#ajax-modal').siblings().remove();
|
||||||
|
$('#ajax-modal').before("<a href='javascript:void(0)' onclick='hideModal()' style='margin-left: 480px;'><img src='/images/bid/close.png' width='26px' height='26px' /></a>");
|
||||||
|
$('#ajax-modal').parent().css("top","40%").css("left","36%").css("border","3px solid #269ac9");
|
||||||
|
$('#ajax-modal').parent().addClass("popbox_polls");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue